Skip to content

Commit 7467c51

Browse files
committed
update docs
1 parent 65df544 commit 7467c51

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

docs/kubernetes.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ helm repo add openiap https://open-rpa.github.io/helm-charts/
1818
helm repo update
1919
```
2020

21-
Next create a values file. To avoid confusen i recomend you name this file the same as your namespace and the "instance" you are creating. So imaging you want to deploy an openflow instance responding to demo.mydomain.com then create a file names demo.yaml
21+
Next create a values file. To avoid confusen i recomend you name this file the same as your namespace and the "instance" you are creating. So imaging you want to deploy an openflow instance responding to demo.mydomain.com then create a file named demo.yaml
2222

23-
There is a ton of different settings you can fine tune, you can always find all the settings in the openflow [values file here](https://github.com/open-rpa/helm-charts/blob/main/charts/openflow/values.yaml) but you only need to add the values you want to override, so get you started this would be a good starting point to add to your demo.yaml file
23+
There is a ton of different settings you can fine tune, you can always find all the settings in the openflow [values file here](https://github.com/open-rpa/helm-charts/blob/main/charts/openflow/values.yaml) but you only need to add the values you want to override. So as a good starting point, add the following to your demo.yaml file
2424

2525
```yaml
2626
# this will be the root domain name hence your openflow url will now be http://demo.mydomain.com
@@ -43,7 +43,7 @@ So first we need to create a namespace. Namespaces allow us to segregate multipl
4343
``` sh
4444
kubectl create namespace demo
4545
```
46-
and now we can create our first openflow installation
46+
and now we can create our first openflow installation inside that namespace
4747
``` sh
4848
helm install openflow openiap/openflow -n demo --values ./demo.yaml
4949
```
@@ -52,9 +52,7 @@ If you update the demo.yaml values file, you can update the installation with
5252
helm upgrade openflow openiap/openflow -n demo --values ./demo.yaml
5353
```
5454

55-
I also go though the install process in the video
56-
[![Configuring Openflow on Kubernetes](https://img.youtube.com/vi/onI_9JIAKbM/1.jpg)](https://youtu.be/onI_9JIAKbM)
57-
55+
For more help and guides, check out my youtube channel, here is a few more about kubernetes
5856
Utilizing multiple node pools
5957
[![Distributing workloads with nodepools](https://img.youtube.com/vi/06OmsoV-AgM/1.jpg)](https://youtu.be/06OmsoV-AgM)
6058

0 commit comments

Comments
 (0)