File tree Expand file tree Collapse file tree 3 files changed +2
-17
lines changed
kubernetes/samples/charts Expand file tree Collapse file tree 3 files changed +2
-17
lines changed Original file line number Diff line number Diff line change 33This sample demonstrates how to install the Traefik ingress controller to provide
44load balancing for WebLogic clusters.
55
6- ## Prerequisites
7-
8- To use this sample you must download [ onessl] ( https://github.com/kubepack/onessl ) and place it in the ` util ` directory.
9-
106## Install the Traefik operator with a Helm chart
117The Traefik Helm chart is located in the official Helm project ` charts ` directory at https://github.com/helm/charts/tree/master/stable/traefik .
128The chart is in the default repository for Helm.
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ function createVoyager() {
2525 helm install appscode/voyager --name voyager-operator --version 7.4.0 \
2626 --namespace voyager \
2727 --set cloudProvider=baremetal \
28- --set apiserver.ca=" $( ${MYDIR} /onessl get kube-ca) " \
2928 --set apiserver.enableValidatingWebhook=false
3029 else
3130 echo " Voyager operator is already installed."
Original file line number Diff line number Diff line change @@ -5,30 +5,20 @@ AppsCode has provided a Helm chart to install Voyager. See the official installa
55
66As a demonstration, the following are the detailed steps to install the Voyager operator by using a Helm chart on a Linux OS.
77
8- ### 1. Install Onessl
9- Onessl is a utility provided by AppsCode. We'll use it to get a CA certificate for the Kubernetes cluster.
10- ```
11- # The assumption is that you have added ~/bin to your PATH env.
12- $ curl -fsSL -o onessl https://github.com/kubepack/onessl/releases/download/0.3.0/onessl-linux-amd64 \
13- && chmod +x onessl \
14- && mv onessl ~/bin
15- ```
16-
17- ### 2. Add the AppsCode chart repository
8+ ### 1. Add the AppsCode chart repository
189```
1910$ helm repo add appscode https://charts.appscode.com/stable/
2011$ helm repo update
2112$ helm search appscode/voyager
2213```
2314
24- ### 3 . Install the Voyager operator
15+ ### 2 . Install the Voyager operator
2516```
2617# Kubernetes 1.9.x - 1.10.x
2718$ kubectl create ns voyager
2819$ helm install appscode/voyager --name voyager-operator --version 7.4.0 \
2920 --namespace voyager \
3021 --set cloudProvider=baremetal \
31- --set apiserver.ca="$(onessl get kube-ca)" \
3222 --set apiserver.enableValidatingWebhook=false
3323```
3424## Optionally, download the Voyager Helm chart
You can’t perform that action at this time.
0 commit comments