Skip to content

Commit

Permalink
Update Kubernetes deployment and service YAML files
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlahbib committed Nov 15, 2024
1 parent ce3bec4 commit a8504fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sync-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
id: verify-deployment
shell: bash
run: |
kubectl rollout status deployment/${STAGE} --timeout=5m
kubectl rollout status deployment/${STAGE} -n ${STAGE} --timeout=5m
if [ $? -eq 0 ]; then
echo "status=Deployment successful on ${{ env.CLUSTER_ENDPOINT }}!" >> $GITHUB_OUTPUT
else
Expand Down
2 changes: 1 addition & 1 deletion terraform/monitoring.tf
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ resource "helm_release" "crowdsec" {
version = "0.13.0"

values = [
file("${path.module}/values/crowdsec-values.yaml")
file("./values/crowdsec.yaml")
]
}

0 comments on commit a8504fe

Please sign in to comment.