Conocimiento diario de Cloud y DevOps

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

Actualizado: 2026-02-07

⭐ Consejo destacado

Copiá y compartí con un clic
Initialize Terraform for Azure
terraform

Initializes Terraform using an Azure Storage backend so state is stored remotely and safely. Replace the placeholders with your Azure resource names before running.

terraform init -backend-config="resource_group_name=<RESOURCE_GROUP>" -backend-config="storage_account_name=<STORAGE_ACCOUNT>" -backend-config="container_name=tfstate" -backend-config="key=infra.tfstate"
terraform azure backend

🔧 Consejos de hoy

10 elementos
Create Azure Resource Group
azure-cli

Creates a new Azure resource group in a specified region.

az group create --name <RG> --location <LOCATION>
azure infrastructure
Deploy Container to AKS
kubectl

Applies a Kubernetes manifest to deploy workloads to an AKS cluster.

kubectl apply -f <DEPLOYMENT_FILE>.yaml
kubernetes aks deployment
Initialize Terraform
terraform

Initializes a Terraform working directory and downloads required providers.

terraform init
terraform iac
Plan Terraform Changes
terraform

Generates and shows an execution plan for infrastructure changes.

terraform plan -out=tfplan
terraform infrastructure
Install Helm Chart
helm

Installs a Helm chart into the specified Kubernetes namespace.

helm install <RELEASE_NAME> <CHART_PATH> --namespace <NAMESPACE>
helm kubernetes
Build Docker Image
docker

Builds a Docker image from the local Dockerfile.

docker build -t <IMAGE_NAME>:<TAG> .
docker containers
Apply Ansible Playbook
ansible

Executes an Ansible playbook against hosts defined in the inventory.

ansible-playbook -i <INVENTORY_FILE> <PLAYBOOK>.yaml
ansible automation
Create AKS Cluster
azure-cli

Creates an AKS cluster with a predefined number of nodes.

az aks create --resource-group <RG> --name <CLUSTER> --node-count 3
azure aks kubernetes
Checkout Code in GitHub Actions
github-actions

Retrieves repository code as part of a GitHub Actions workflow.

uses: actions/checkout@v4
github cicd
Run Azure DevOps Pipeline Manually
azdo

Triggers an Azure DevOps pipeline run via CLI.

az pipelines run --name <PIPELINE_NAME>
azure-devops cicd
Restart Kubernetes Deployment
kubectl

Forces a rolling restart of a Kubernetes deployment.

kubectl rollout restart deployment <DEPLOYMENT_NAME> -n <NAMESPACE>
kubernetes operations
Push Docker Image
docker

Pushes a previously built Docker image to a container registry.

docker push <REGISTRY>/<IMAGE_NAME>:<TAG>
docker containers registry
💡 Experiencia real

“Standardized AKS namespaces + RBAC templates.”

— Platform Eng. · AKS/Kubernetes