render manifests with api version
All checks were successful
renovate / renovate (push) Successful in 59s
All checks were successful
renovate / renovate (push) Successful in 59s
This commit is contained in:
@@ -40,6 +40,12 @@ jobs:
|
|||||||
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
|
- name: Configure Kubeconfig
|
||||||
|
uses: azure/k8s-set-context@v4
|
||||||
|
with:
|
||||||
|
method: kubeconfig
|
||||||
|
kubeconfig: ${{ secrets.KUBECONFIG }}
|
||||||
|
|
||||||
- name: Prepare Manifest Branch
|
- name: Prepare Manifest Branch
|
||||||
id: prepare-manifest-branch
|
id: prepare-manifest-branch
|
||||||
run: |
|
run: |
|
||||||
@@ -186,17 +192,17 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack into argocd namespace ..."
|
echo ">> Special Rendering for stack into argocd namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run)
|
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -34,6 +34,12 @@ jobs:
|
|||||||
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
|
- name: Configure Kubeconfig
|
||||||
|
uses: azure/k8s-set-context@v4
|
||||||
|
with:
|
||||||
|
method: kubeconfig
|
||||||
|
kubeconfig: ${{ secrets.KUBECONFIG }}
|
||||||
|
|
||||||
- name: Prepare Manifest Branch
|
- name: Prepare Manifest Branch
|
||||||
run: |
|
run: |
|
||||||
cd ${MANIFEST_DIR}
|
cd ${MANIFEST_DIR}
|
||||||
@@ -171,17 +177,17 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack into argocd namespace ..."
|
echo ">> Special Rendering for stack into argocd namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run)
|
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -41,6 +41,12 @@ jobs:
|
|||||||
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
|
- name: Configure Kubeconfig
|
||||||
|
uses: azure/k8s-set-context@v4
|
||||||
|
with:
|
||||||
|
method: kubeconfig
|
||||||
|
kubeconfig: ${{ secrets.KUBECONFIG }}
|
||||||
|
|
||||||
- name: Prepare Manifest Branch
|
- name: Prepare Manifest Branch
|
||||||
run: |
|
run: |
|
||||||
cd ${MANIFEST_DIR}
|
cd ${MANIFEST_DIR}
|
||||||
@@ -191,17 +197,17 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack into argocd namespace ..."
|
echo ">> Special Rendering for stack into argocd namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run)
|
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
@@ -39,6 +39,12 @@ jobs:
|
|||||||
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
version: v3.17.2 # Pending https://github.com/helm/helm/pull/30743
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
|
- name: Configure Kubeconfig
|
||||||
|
uses: azure/k8s-set-context@v4
|
||||||
|
with:
|
||||||
|
method: kubeconfig
|
||||||
|
kubeconfig: ${{ secrets.KUBECONFIG }}
|
||||||
|
|
||||||
- name: Prepare Manifest Branch
|
- name: Prepare Manifest Branch
|
||||||
run: |
|
run: |
|
||||||
cd ${MANIFEST_DIR}
|
cd ${MANIFEST_DIR}
|
||||||
@@ -189,17 +195,17 @@ jobs:
|
|||||||
"stack")
|
"stack")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for stack into argocd namespace ..."
|
echo ">> Special Rendering for stack into argocd namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace argocd --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
"cilium" | "coredns" | "metrics-server" |"prometheus-operator-crds")
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
echo ">> Special Rendering for $chart_name into kube-system namespace ..."
|
||||||
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run)
|
TEMPLATE=$(helm template $chart_name ./ --namespace kube-system --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Standard Rendering for $chart_name ..."
|
echo ">> Standard Rendering for $chart_name ..."
|
||||||
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run)
|
TEMPLATE=$(helm template "$chart_name" ./ --namespace "$chart_name" --include-crds --dry-run=server --server-side --api-versions gateway.networking.k8s.io/v1)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user