Conocimiento diario de Cloud y DevOps

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

Actualizado: 2026-02-08

⭐ Consejo destacado

Copiá y compartí con un clic
Disable Public Access to AKS API Server
azure-cli

Restricts the AKS API server to only the specified IP ranges, reducing exposure to the public internet. This helps prevent unauthorized access attempts.

az aks update --resource-group <RESOURCE_GROUP> --name <AKS_CLUSTER> --api-server-authorized-ip-ranges <ALLOWED_IP_1>,<ALLOWED_IP_2>
aks security network hardening

🔧 Consejos de hoy

10 elementos
Create Azure Resource Group
azure-cli

Creates a new Azure resource group in the specified location.

az group create -n <RG> -l <LOCATION>
azure resource-group
Deploy ARM Template
azure-cli

Deploys an ARM template to a chosen resource group.

az deployment group create -g <RG> -f template.json
azure infrastructure
Create Azure DevOps Variable Group
azdo

Creates a variable group in Azure DevOps with initial variables.

az pipelines variable-group create --name <NAME> --project <PROJECT> --variables key=value
azdo variables
Run GitHub Actions Workflow Manually
github-actions

Triggers a GitHub Actions workflow on the main branch.

gh workflow run <WORKFLOW_NAME> --ref main
github cicd
Build Docker Image
docker

Builds a Docker image from the current directory.

docker build -t <IMAGE_NAME>:latest .
docker build
Push Docker Image to Registry
docker

Uploads a Docker image to a container registry.

docker push <REGISTRY>/<IMAGE_NAME>:latest
docker registry
Apply Terraform Configuration
terraform

Applies Terraform configuration without interactive approval.

terraform apply -auto-approve
terraform infrastructure
Initialize Terraform Backend
terraform

Initializes Terraform modules and backend configuration.

terraform init
terraform setup
Apply Kubernetes Manifest
kubernetes

Deploys or updates Kubernetes resources using a manifest file.

kubectl apply -f deployment.yaml -n <NAMESPACE>
kubernetes deployment
Connect to AKS Cluster
aks

Adds AKS cluster credentials to the kubeconfig for access.

az aks get-credentials -g <RG> -n <CLUSTER>
aks kubernetes
Install Helm Chart
helm

Installs a Helm chart into the specified Kubernetes namespace.

helm install <RELEASE> <CHART> -n <NAMESPACE>
helm kubernetes
Run Ansible Playbook
ansible

Executes an Ansible playbook using an inventory file.

ansible-playbook -i inventory.yaml playbook.yaml
ansible automation
💡 Experiencia real

“Standardized AKS namespaces + RBAC templates.”

— Platform Eng. · AKS/Kubernetes