File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 74
74
kubectl -n istio-operator get all
75
75
kubectl -n istio-system get all
76
76
kubectl -n prod get all
77
+ kubectl -n prod describe deployment backend
78
+ kubectl -n prod logs -l app=backend --all-containers=true
Original file line number Diff line number Diff line change 43
43
cat istio/system/istio.yaml | yq e '. | select(.kind == "HelmRelease" and .metadata.name =="istiod") | .spec.values' - > values.yaml
44
44
VERSION=$(cat clusters/my-cluster/istio-version.yaml | yq e '.data.version' -)
45
45
helm repo add istio $URI
46
- helm template -f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio-sidecar-injector") | .data.config' - > injector.yaml
47
- helm template -f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio") | .data.mesh' - > mesh.yaml
48
- helm template -f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio-sidecar-injector") | .data.values' - > inj-values.yaml
46
+ helm template -n istio-system - f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio-sidecar-injector") | .data.config' - > injector.yaml
47
+ helm template -n istio-system - f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio") | .data.mesh' - > mesh.yaml
48
+ helm template -n istio-system - f values.yaml --version $VERSION istiod istio/istiod | yq e '.| select(.kind == "ConfigMap" and .metadata.name == "istio-sidecar-injector") | .data.values' - > inj-values.yaml
49
49
50
50
python -m pip install jsonpatch
51
51
Original file line number Diff line number Diff line change 51
51
name : istio
52
52
interval : 1h0m0s
53
53
values :
54
+ global :
55
+ istioNamespace : istio-system
54
56
pilot :
55
57
autoscaleEnabled : false
56
58
resources :
You can’t perform that action at this time.
0 commit comments