Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion roles/baseline/tasks/contour.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,24 @@
disablePermitInsecure: false
tls:
fallback-certificate: {}
when: CONTOUR_CONFIG.contour.configFileContents.compression is defined
tags:
- install
- update

# Restart Contour deployment to apply the compression configuration changes
- name: Restart Contour deployment
kubernetes.core.k8s:
state: patched
kind: Deployment
name: "{{ CONTOUR_NAME }}"
namespace: "{{ CONTOUR_NAMESPACE }}"
kubeconfig: "{{ KUBECONFIG }}"
definition:
spec:
template:
metadata:
annotations:
kubectl.kubernetes.io/restartedAt: "{{ ansible_date_time.iso8601 }}"
tags:
- install
- update
Expand Down
4 changes: 2 additions & 2 deletions roles/vdm/tasks/cas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
- install
- uninstall
- update

# Add shutdown transformer for programming-only deployments (CAS disabled)
# This approach keeps CAS resources in the manifest (avoiding prune risks) but shuts down CAS pods
- name: CAS - shutdown for programming-only deployment
Expand All @@ -161,4 +161,4 @@
tags:
- install
- uninstall
- update
- update