Commit ca4aa4a 1 parent 2bb15ec commit ca4aa4a Copy full SHA for ca4aa4a
File tree 3 files changed +33
-6
lines changed
3 files changed +33
-6
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : install.istio.io/v1alpha1
3
+ kind : IstioOperator
4
+ metadata :
5
+ name : istio-operator
6
+ namespace : istio-system
7
+ spec :
8
+ components :
9
+ cni :
10
+ namespace : istio-system
11
+ enabled : true
12
+ ---
Original file line number Diff line number Diff line change @@ -86,12 +86,24 @@ spec:
86
86
- name : status-port
87
87
port : 15021
88
88
nodePort : 32000
89
+
89
90
---
90
- apiVersion : install.istio.io/v1alpha1
91
- kind : IstioOperator
91
+ apiVersion : helm.toolkit.fluxcd.io/v2
92
+ kind : HelmRelease
93
+ metadata :
94
+ name : istio-cni
95
+ namespace : istio-system
92
96
spec :
93
- components :
94
- cni :
97
+ interval : 5m
98
+ chart :
99
+ spec :
100
+ chart : cni
101
+ version : 1.24.2
102
+ sourceRef :
103
+ kind : HelmRepository
104
+ name : istio
105
+ releaseName : istio-cni
106
+ dependsOn :
107
+ - name : istio-base
95
108
namespace : istio-system
96
- enabled : true
97
- ---
109
+
Original file line number Diff line number Diff line change @@ -53,6 +53,9 @@ helm upgrade -i -n flux-system --create-namespace flux oci://ghcr.io/fluxcd-comm
53
53
echo -e " ${COL} [$( date ' +%H:%M:%S' ) ] Starting deployments ${COL_RES} "
54
54
kubectl apply -k $SCRIPT_DIR /../kustomize/overlays/default
55
55
56
+ sleep 5
57
+ kubectl apply -f $SCRIPT_DIR /../kustomize/base/istio-operator
58
+
56
59
echo -e " ${COL} [$( date ' +%H:%M:%S' ) ] Creating necessary secrets ${COL_RES} "
57
60
kubectl create secret docker-registry ghcr-credentials -n openmfp-system --docker-server=ghcr.io --docker-username=$ghUser --docker-password=$ghToken --dry-run=client -o yaml | kubectl apply -f -
58
61
You can’t perform that action at this time.
0 commit comments