Skip to content

Commit 17e6b6d

Browse files
committed
chore(workflow): change experimental_native_ingress to use_native_ingress
1 parent d07fb4e commit 17e6b6d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

charts/workflow/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ global:
5757
# Valid values are:
5858
# - true: drycc-router will not be deployed. Workflow will not be usable until a Kubernetes ingress controller is installed.
5959
# - false: drycc-router will be deployed (default).
60-
experimental_native_ingress: false
60+
use_native_ingress: false
6161
# If the Kubernetes cluster uses CNI
6262
# use_cni: true
6363
# Set the `listen` variable for registry-proxy's NGINX

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ nav:
3737
- Configuring Postgres: installing-workflow/configuring-postgres.md
3838
- Configuring the Registry: installing-workflow/configuring-registry.md
3939
- Chart Provenance: installing-workflow/chart-provenance.md
40-
- Experimental Native Ingress: installing-workflow/experimental-native-ingress.md
40+
- Use Native Ingress: installing-workflow/use-native-ingress.md
4141
- Users:
4242
- Command Line Interface: users/cli.md
4343
- Users and Registration: users/registration.md

src/installing-workflow/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ More rigorous installations would benefit from using outside sources for the fol
5050

5151
#### (Experimental) Kubernetes Native Ingress
5252

53-
Workflow now offers [experimental native ingress](experimental-native-ingress.md) to take advantage of native Kubernetes routing. Any compatible Kubernetes ingress controller can be used in place of Workflow's nginx-based drycc-router. Follow [this guide](experimental-native-ingress.md) to enable experimental native ingress.
53+
Workflow now offers [experimental native ingress](use-native-ingress.md) to take advantage of native Kubernetes routing. Any compatible Kubernetes ingress controller can be used in place of Workflow's nginx-based drycc-router. Follow [this guide](use-native-ingress.md) to enable experimental native ingress.
5454

5555
## Add the Drycc Chart Repository
5656

src/installing-workflow/experimental-native-ingress.md renamed to src/installing-workflow/use-native-ingress.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Now that Helm is installed and the repository has been added, install Workflow with a native ingress by running:
66

77
```
8-
$ helm install drycc/workflow --namespace drycc --set global.experimental_native_ingress=true,controller.platform_domain=drycc.cc
8+
$ helm install drycc/workflow --namespace drycc --set global.use_native_ingress=true,controller.platform_domain=drycc.cc
99
```
1010

1111
Where `controller.platform_domain` is a **required** parameter that is traditionally not required for Workflow that is explained in the next section. In this example we are using `drycc.cc` for `$hostname`.
@@ -45,7 +45,7 @@ drycc-workflow-manager-68nu6 1/1 Running 0 5m
4545

4646
## Install a Kubernetes Ingress Controller
4747

48-
Now that Workflow has been deployed with the `global.experimental_native_ingress` flag set to `true`, we will need a Kubernetes ingress controller in place to begin routing traffic.
48+
Now that Workflow has been deployed with the `global.use_native_ingress` flag set to `true`, we will need a Kubernetes ingress controller in place to begin routing traffic.
4949

5050
Here is an example of how to use [traefik](https://traefik.io/) as an ingress controller for Workflow. Of course, you are welcome to use any controller you wish.
5151

0 commit comments

Comments
 (0)