Skip to content

Commit 99ab3b2

Browse files
author
Lily He
authored
Update README.md
1 parent 0bad9c3 commit 99ab3b2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

kubernetes/samples/charts/voyager/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,12 @@ As a demonstration, the following are the detailed steps to install the Voyager
99
```
1010
$ helm repo add appscode https://charts.appscode.com/stable/
1111
$ helm repo update
12+
```
13+
Verify the chart repository has been added.
14+
```
1215
$ helm search appscode/voyager
16+
NAME CHART VERSION APP VERSION DESCRIPTION
17+
appscode/voyager 8.0.1 8.0.1 Voyager by AppsCode - Secure HAProxy Ingress Co...
1318
```
1419

1520
### 2. Install the Voyager operator
@@ -21,6 +26,23 @@ $ helm install appscode/voyager --name voyager-operator --version 7.4.0 \
2126
--set cloudProvider=baremetal \
2227
--set apiserver.enableValidatingWebhook=false
2328
```
29+
Wait until Voyager Operator is running.
30+
```
31+
$ kubectl -n voyager get all
32+
NAME READY STATUS RESTARTS AGE
33+
pod/voyager-voyager-operator-77cbfdcb86-gqwgt 1/1 Running 0 46m
34+
35+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
36+
service/voyager-voyager-operator ClusterIP 10.105.254.144 <none> 443/TCP,56791/TCP 46m
37+
38+
NAME DESIRED CURRENT UP-TO-DATE AVAILABLE AGE
39+
deployment.apps/voyager-voyager-operator 1 1 1 1 46m
40+
41+
NAME DESIRED CURRENT READY AGE
42+
replicaset.apps/voyager-voyager-operator-77cbfdcb86 1 1 1 46m
43+
```
44+
> NOTE: All the generated Kubernetes resources of Voyager operator have names with pattern 'voyager-<releaseName>XXX'. This is the logic controlled by Voyager Helm chart. In our case we use releaseName 'voyager-operator', so all the generated resources have name like 'voyager-voyager-operatorXXX'.
45+
2446
## Optionally, download the Voyager Helm chart
2547
If you want, you can download the Voyager Helm chart and untar it into a local folder:
2648
```

0 commit comments

Comments
 (0)