aula-11: ArgoCD + GitLab Runner para GitOps CI/CD
- ArgoCD via Helm com recursos mínimos (~1Gi) - GitLab Runner com executor Kubernetes - Exemplo node-bugado com Dockerfile e .gitlab-ci.yml - Manifests K8s para repositório GitOps - README.md da aula-03 (liveness + readiness probes)
This commit is contained in:
17
aula-11/node-bugado/k8s/configmap.yaml
Normal file
17
aula-11/node-bugado/k8s/configmap.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
# =============================================================================
|
||||
# ConfigMap - node-bugado
|
||||
# =============================================================================
|
||||
#
|
||||
# Configuração da aplicação.
|
||||
# MAX_REQUESTS define quantas requisições antes de "travar".
|
||||
#
|
||||
# =============================================================================
|
||||
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: node-bugado-config
|
||||
labels:
|
||||
app: node-bugado
|
||||
data:
|
||||
MAX_REQUESTS: "5"
|
||||
Reference in New Issue
Block a user