Conocimiento diario de Cloud y DevOps

Azure · Azure DevOps · GitHub Actions · Ansible · Kubernetes · AKS · Terraform · Helm · CI/CD

Actualizado: 2026-02-05

⭐ Consejo destacado

Copiá y compartí con un clic
Set Azure subscription
azure-cli

Switches your active Azure CLI context to the specified subscription so subsequent commands run in the correct scope.

az account set --subscription <SUBSCRIPTION_ID>
azure cli subscription

🔧 Consejos de hoy

10 elementos
Create Azure Resource Group
azure-cli

Creates a new Azure resource group in the specified region. Use this before deploying other Azure resources.

az group create -n <RG> -l <LOCATION>
azure resource-group cli
Deploy Terraform Configuration
terraform

Initializes Terraform providers and applies the configuration automatically. Useful for provisioning infrastructure.

terraform init && terraform apply -auto-approve
terraform iac deployment
Run Ansible Playbook
ansible

Executes an Ansible playbook against hosts defined in the inventory file. Used for configuration management.

ansible-playbook -i inventory.ini playbook.yml
ansible automation configuration
Build Docker Image
docker

Builds a Docker image from the Dockerfile in the current directory. Helps containerize applications.

docker build -t <IMAGE_NAME>:<TAG> .
docker containers build
Push Docker Image
docker

Pushes a local Docker image to a container registry. Required for deployments pulling remote images.

docker push <REGISTRY>/<IMAGE_NAME>:<TAG>
docker registry push
Connect to AKS Cluster
aks

Downloads AKS cluster credentials to local kubeconfig. Enables kubectl interaction with the cluster.

az aks get-credentials -g <RG> -n <CLUSTER>
aks kubernetes auth
Apply Kubernetes Manifest
kubernetes

Applies a Kubernetes manifest to the specified namespace. Used for deploying workloads.

kubectl apply -f deployment.yaml -n <NAMESPACE>
kubernetes deployment kubectl
Install Helm Chart
helm

Installs or upgrades a Helm release in a Kubernetes cluster. Useful for repeatable deployments.

helm upgrade --install <RELEASE> <CHART_PATH> -n <NAMESPACE>
helm kubernetes deployment
Run GitHub Actions Workflow Manually
github-actions

Triggers a GitHub Actions workflow on demand using the GitHub CLI. Helpful for testing pipelines.

gh workflow run <WORKFLOW_FILE>
github actions ci-cd
Queue Azure DevOps Pipeline
azdo

Queues a pipeline run for the specified branch in Azure DevOps. Useful for triggering CI/CD builds.

az pipelines run --name <PIPELINE_NAME> --branch <BRANCH>
azure-devops pipeline ci-cd
List Kubernetes Pods
kubernetes

Retrieves all pods in the target namespace. Helps monitor application status.

kubectl get pods -n <NAMESPACE>
kubernetes pods monitoring
Delete Terraform Resources
terraform

Destroys all infrastructure managed by Terraform. Useful for cleanup in test environments.

terraform destroy -auto-approve
terraform cleanup infrastructure
💡 Experiencia real

“Cut deployment time from 45m to 10m with pipelines.”

— DevOps Team · Azure DevOps