Conocimiento diario de Cloud y DevOps
Azure · Azure DevOps · GitHub Actions · Ansible · Kubernetes · AKS · Terraform · Helm · CI/CD
⭐ Consejo destacado
Copiá y compartí con un clicInstall a Helm chart with custom values
helmThis 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>
🔧 Consejos de hoy
10 elementosCreate Azure Resource Group
azure-cliCreates a new resource group in the specified Azure region.
az group create --name <RG> --location <LOCATION>
Apply Terraform Configuration
terraformInitializes Terraform and applies all configuration changes automatically.
terraform init && terraform apply -auto-approve
Deploy Kubernetes Manifest
kubernetesApplies a Kubernetes manifest file to the selected namespace.
kubectl apply -f <FILE>.yaml -n <NAMESPACE>
View AKS Cluster Credentials
aksRetrieves kubeconfig credentials for interacting with an AKS cluster.
az aks get-credentials --resource-group <RG> --name <CLUSTER>
Install Helm Chart
helmInstalls a Helm chart into a specific Kubernetes namespace.
helm install <RELEASE> <CHART> --namespace <NAMESPACE>
Run Ansible Playbook
ansibleExecutes an Ansible playbook against hosts defined in the inventory.
ansible-playbook -i <INVENTORY> <PLAYBOOK>.yaml
Build Docker Image
dockerBuilds a Docker image using the Dockerfile in the current directory.
docker build -t <IMAGE>:<TAG> .
Push Container to Registry
dockerPushes a locally built image to a container registry.
docker push <REGISTRY>/<IMAGE>:<TAG>
Create GitHub Actions Workflow Run
github-actionsTriggers a GitHub Actions workflow manually using the GitHub CLI.
gh workflow run <WORKFLOW>.yaml
Queue Azure DevOps Pipeline
azdoManually triggers an Azure DevOps pipeline by name.
az pipelines run --name <PIPELINE>
Scale Kubernetes Deployment
kubernetesScales a Kubernetes deployment to the desired number of replicas.
kubectl scale deployment <DEPLOYMENT> --replicas=<COUNT> -n <NAMESPACE>
Delete Azure Resource
azure-cliDeletes a specified Azure resource using its resource ID.
az resource delete --ids <RESOURCE_ID>
💡 Experiencia real
“Standardized AKS namespaces + RBAC templates.”