Skip to content

Commit a6a50c5

Browse files
committed
refactor: refactor istio
1 parent 7b13962 commit a6a50c5

File tree

5 files changed

+19
-40
lines changed

5 files changed

+19
-40
lines changed

istio/README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,6 @@ Istio is an open-source service mesh platform that provides a uniform way to con
44
Traffic routing rules let you easily control the flow of traffic and API calls between services.
55
It provides a number of key capabilities uniformly across a network of services: traffic management, service identity and security, and observability and telemetry
66

7-
## Install istioctl
8-
9-
### Binary/Archive
10-
11-
```bash
12-
curl -L https://istio.io/downloadIstio | sh -
13-
cd istio-*/
14-
cd bin
15-
chmod +x istioctl
16-
sudo /bin/cp -pf istioctl /usr/local/bin
17-
```
18-
19-
### Homebrew
20-
21-
```sh
22-
brew install istioctl
23-
```
24-
25-
### Chocolatey
26-
27-
```ps1
28-
choco install -y istioctl
29-
```
30-
317
## References
328

339
- Istio Documentation: <https://istio.io/latest/docs/>

istio/install-istio.sh renamed to istio/install/install-istio.sh

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,7 @@ set -o errtrace
55

66
istioctl version
77
### Istio is not present in the cluster: no running Istio pods in namespace "istio-system"
8-
### client version: 1.23.2
9-
10-
### profile list
11-
istioctl profile list
12-
### Istio configuration profiles:
13-
### ambient
14-
### default
15-
### demo
16-
### empty
17-
### minimal
18-
### openshift
19-
### openshift-ambient
20-
### preview
21-
### remote
22-
### stable
8+
### client version: 1.24.2
239

2410
### install
2511
istioctl install -y --set profile=default
File renamed without changes.
File renamed without changes.

istio/istio-commands.sh

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ export PATH="${PATH}:${HOME}/.istioctl/bin"
66

77
######################################################################
88

9+
### install istioctl
10+
11+
### download and install istioctl
12+
curl -L https://istio.io/downloadIstio | sh -
13+
cd istio-*/
14+
cd bin
15+
chmod +x istioctl
16+
sudo /bin/cp -pf istioctl /usr/local/bin
17+
18+
### homebrew
19+
brew install istioctl
20+
21+
### chocolatey
22+
choco install -y istioctl
23+
24+
######################################################################
25+
926
### version
1027

1128
istioctl version
@@ -19,7 +36,7 @@ istioctl version
1936

2037
######################################################################
2138

22-
### install
39+
### install istio
2340

2441
### profile list
2542
istioctl profile list

0 commit comments

Comments
 (0)