File tree Expand file tree Collapse file tree 2 files changed +47
-4
lines changed Expand file tree Collapse file tree 2 files changed +47
-4
lines changed Original file line number Diff line number Diff line change @@ -3,22 +3,28 @@ trap 'echo "${BASH_SOURCE[0]}: line ${LINENO}: status ${?}: user ${USER}: func $
3
3
set -o errexit
4
4
set -o errtrace
5
5
6
+ istioctl version
7
+ # ## Istio is not present in the cluster: no running Istio pods in namespace "istio-system"
8
+ # ## client version: 1.23.2
9
+
6
10
# ## profile list
7
11
istioctl profile list
8
12
# ## Istio configuration profiles:
13
+ # ## ambient
9
14
# ## default
10
15
# ## demo
11
16
# ## empty
12
- # ## external
13
17
# ## minimal
14
18
# ## openshift
19
+ # ## openshift-ambient
15
20
# ## preview
16
21
# ## remote
22
+ # ## stable
17
23
18
24
# ## install
19
25
istioctl install -y --set profile=default
20
26
# istioctl install -y --set profile=default \
21
27
# --set meshConfig.accessLogFile=/dev/stdout
22
28
23
29
# ## verify
24
- # istioctl manifest generate --set profile=default | istioctl verify-install -f -
30
+ istioctl manifest generate --set profile=default | istioctl verify-install -f -
Original file line number Diff line number Diff line change @@ -8,6 +8,43 @@ export PATH="${PATH}:${HOME}/.istioctl/bin"
8
8
9
9
# #####################################################################
10
10
11
+ # ## version
12
+
13
+ istioctl version
14
+ # ## Istio is not present in the cluster: no running Istio pods in namespace "istio-system"
15
+ # ## client version: 1.23.2
16
+
17
+ istioctl version
18
+ # ## client version: 1.23.2
19
+ # ## control plane version: 1.23.2
20
+ # ## data plane version: 1.23.2 (1 proxies)
21
+
22
+ # #####################################################################
23
+
24
+ # ## install
25
+
26
+ # ## profile list
27
+ istioctl profile list
28
+ # ## Istio configuration profiles:
29
+ # ## ambient
30
+ # ## default
31
+ # ## demo
32
+ # ## empty
33
+ # ## minimal
34
+ # ## openshift
35
+ # ## openshift-ambient
36
+ # ## preview
37
+ # ## remote
38
+ # ## stable
39
+
40
+ istioctl install -y --set profile=default
41
+
42
+ # ## verify
43
+ istioctl manifest generate --set profile=default | istioctl verify-install -f -
44
+ # ## ✔ Istio is installed and verified successfully
45
+
46
+ # #####################################################################
47
+
11
48
# ## injection
12
49
13
50
# ## automatic sidecar injection
@@ -16,10 +53,10 @@ kubectl get namespace -L istio-injection
16
53
istioctl proxy-status
17
54
18
55
# ## manual sidecar injection
19
- # kubectl apply --filename <(istioctl kube-inject -f httpbin.yaml)
56
+ kubectl apply --filename <( istioctl kube-inject -f httpbin.yaml)
20
57
21
58
# ## disable sidecar injection
22
- # kubectl label namespace ${NAMESPACE} istio-injection-
59
+ kubectl label namespace ${NAMESPACE} istio-injection-
23
60
24
61
# #####################################################################
25
62
You can’t perform that action at this time.
0 commit comments