different serverside apply order

This commit is contained in:
Kjeld Schouten-Lebbing 2023-06-09 10:36:21 +02:00
parent 00e2365625
commit 93a0ad0fd6
1 changed files with 15 additions and 15 deletions

View File

@ -151,13 +151,13 @@ jobs:
## TODO: Move to our Helm Charts ## TODO: Move to our Helm Charts
## TODO: Only add when required ## TODO: Only add when required
if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
kubectl apply -f --server-side --force-conflicts https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml kubectl apply -f https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml --server-side --force-conflicts
fi fi
- name: Run chart-testing (install) - name: Run chart-testing (install)
@ -209,13 +209,13 @@ jobs:
- name: Add Dependencies - name: Add Dependencies
run: | run: |
if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
kubectl apply -f --server-side --force-conflicts https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml kubectl apply -f https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml --server-side --force-conflicts
fi fi
- name: Run chart-testing (install) - name: Run chart-testing (install)
@ -267,13 +267,13 @@ jobs:
- name: Add Dependencies - name: Add Dependencies
run: | run: |
if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
kubectl apply -f --server-side --force-conflicts https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml kubectl apply -f https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml --server-side --force-conflicts
fi fi
- name: Run chart-testing (install) - name: Run chart-testing (install)
@ -325,13 +325,13 @@ jobs:
- name: Add Dependencies - name: Add Dependencies
run: | run: |
if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
kubectl apply -f --server-side --force-conflicts https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml kubectl apply -f https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml --server-side --force-conflicts
fi fi
- name: Run chart-testing (install) - name: Run chart-testing (install)
@ -441,13 +441,13 @@ jobs:
- name: Add Dependencies - name: Add Dependencies
run: | run: |
if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/metallb" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.10/config/manifests/metallb-native.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
kubectl apply -f --server-side --force-conflicts https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml kubectl apply -f https://raw.githubusercontent.com/cloudnative-pg/cloudnative-pg/release-1.17/releases/cnpg-1.17.5.yaml --server-side --force-conflicts
fi fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
kubectl apply -f --server-side --force-conflicts https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml kubectl apply -f https://github.com/prometheus-operator/prometheus-operator/releases/download/v0.65.2/bundle.yaml --server-side --force-conflicts
fi fi
- name: Run chart-testing (install) - name: Run chart-testing (install)