Conocimiento diario de Cloud y DevOps

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

Actualizado: 2026-02-03

⭐ Consejo destacado

Copiá y compartí con un clic
Install a Helm chart with custom values
helm

This installs a Helm chart while applying overrides from a custom values file. Use it when you need to deploy with environment‑specific settings.

helm install <APP_NAME> <CHART_NAME> -f <VALUES_FILE>.yaml --namespace <NAMESPACE>
helm kubernetes deployment

🔧 Consejos de hoy

10 elementos
Create Azure Resource Group
azure-cli

Creates a new resource group in the specified Azure region.

az group create --name <RG> --location <LOCATION>
azure resource-group cli
Apply Terraform Configuration
terraform

Initializes Terraform and applies all configuration changes automatically.

terraform init && terraform apply -auto-approve
terraform iac deployment
Deploy Kubernetes Manifest
kubernetes

Applies a Kubernetes manifest file to the selected namespace.

kubectl apply -f <FILE>.yaml -n <NAMESPACE>
k8s deployment manifests
View AKS Cluster Credentials
aks

Retrieves kubeconfig credentials for interacting with an AKS cluster.

az aks get-credentials --resource-group <RG> --name <CLUSTER>
aks kubernetes auth
Install Helm Chart
helm

Installs a Helm chart into a specific Kubernetes namespace.

helm install <RELEASE> <CHART> --namespace <NAMESPACE>
helm k8s charts
Run Ansible Playbook
ansible

Executes an Ansible playbook against hosts defined in the inventory.

ansible-playbook -i <INVENTORY> <PLAYBOOK>.yaml
ansible automation
Build Docker Image
docker

Builds a Docker image using the Dockerfile in the current directory.

docker build -t <IMAGE>:<TAG> .
docker containers build
Push Container to Registry
docker

Pushes a locally built image to a container registry.

docker push <REGISTRY>/<IMAGE>:<TAG>
docker registry publish
Create GitHub Actions Workflow Run
github-actions

Triggers a GitHub Actions workflow manually using the GitHub CLI.

gh workflow run <WORKFLOW>.yaml
github ci automation
Queue Azure DevOps Pipeline
azdo

Manually triggers an Azure DevOps pipeline by name.

az pipelines run --name <PIPELINE>
azdo ci pipelines
Scale Kubernetes Deployment
kubernetes

Scales a Kubernetes deployment to the desired number of replicas.

kubectl scale deployment <DEPLOYMENT> --replicas=<COUNT> -n <NAMESPACE>
k8s scaling
Delete Azure Resource
azure-cli

Deletes a specified Azure resource using its resource ID.

az resource delete --ids <RESOURCE_ID>
azure cleanup management
💡 Experiencia real

“Standardized AKS namespaces + RBAC templates.”

— Platform Eng. · AKS/Kubernetes