You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Provides steps for provisioning and connecting cloud services to the application | Uses OCI Service Broker to _provision_**and**_connect_ the Autonomous Transaction Processing database |
42
42
43
-
{{< switcher border=true tabs="Manual Steps|Automated (Using OCI Service Broker)" >}}
43
+
{{< switcher border=true tabs="Manual Steps|**Deprecated**Automated (Using OCI Service Broker)" >}}
44
44
45
45
<ul>
46
46
<li>
@@ -185,7 +185,7 @@ secret to the `mushop-utilities` namespace:
185
185
on the same namespace used by the `setup` chart. For convenience, the documentation
186
186
commands defaults both the `setup` and OCI Service Broker charts to use
187
187
the `mushop-utilities` namespace.
188
-
188
+
189
189
1. Next utilize the OCI Service Broker implementation to provision services by installing the included `provision` chart:
190
190
191
191
```shell--helm2
@@ -400,8 +400,9 @@ helm chart is installed using settings to leverage cloud backing services.
Copy file name to clipboardExpand all lines: src/docs/layouts/shortcodes/content/setup.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,18 +12,18 @@ application features.
12
12
|[Metrics Server](https://github.com/helm/charts/blob/master/stable/metrics-server/README.md)| Support for Horizontal Pod Autoscaling |`metrics-server.enabled`| true |
13
13
|[Ingress Nginx](https://kubernetes.github.io/ingress-nginx/)| Ingress controller and public Load Balancer |`ingress-nginx.enabled`| true |
14
14
|[Cert Manager](https://github.com/jetstack/cert-manager/blob/master/README.md)| x509 certificate management for Kubernetes |`cert-manager.enabled`| true |
15
-
|[Service Catalog](https://github.com/kubernetes-sigs/service-catalog/blob/master/charts/catalog/README.md)| Service Catalog chart utilized by Oracle Service Broker |`catalog.enabled`| false |
15
+
|[Service Catalog](https://github.com/kubernetes-sigs/service-catalog/blob/master/charts/catalog/README.md)|(Archived) Service Catalog chart utilized by Oracle Service Broker |`catalog.enabled`| false |
16
16
|[Jenkins](https://github.com/helm/charts/blob/master/stable/jenkins/README.md)| Jenkins automation server on Kubernetes |`jenkins.enabled`| false |
17
17
18
18
> Dependencies installed with `setup` chart. **NOTE** as these are very common installations, each may be disabled as needed to resolve conflicts.
19
19
20
20
From `deploy/complete/helm-chart` directory:
21
21
22
-
1. Install chart dependencies:
22
+
<!--1. Install chart dependencies:
23
23
24
24
```shell
25
25
helm dependency update setup
26
-
```
26
+
```-->
27
27
28
28
1. Install `setup` chart:
29
29
@@ -33,28 +33,34 @@ From `deploy/complete/helm-chart` directory:
33
33
--namespace mushop-utilities
34
34
```
35
35
36
-
```shell--helm3
36
+
<!-- ```shell--helm3
37
37
kubectl create ns mushop-utilities
38
-
```
38
+
``` -->
39
39
40
40
```shell--helm3
41
-
helm install mushop-utils setup \
42
-
--namespace mushop-utilities
41
+
helm upgrade --install mushop-utils setup \
42
+
--dependency-update \
43
+
--namespace mushop-utilities \
44
+
--create-namespace
43
45
```
44
46
45
47
> **OPTIONAL** In case you are provisioning ATP, Stream, and Object Storage with **OCI Service Broker**. In that case, you should enable the Service Catalog `catalog.enabled` to `true` in `values.yaml` or by adding the command line flag `--set catalog.enabled=true` in the `helm install` command above.
46
48
47
49
```shell--helm3
48
-
helm install mushop-utils setup \
50
+
helm upgrade --install mushop-utils setup \
51
+
--dependency-update \
49
52
--namespace mushop-utilities \
53
+
--create-namespace \
50
54
--set catalog.enabled=true
51
55
```
52
56
53
57
> **OPTIONAL** The Jenkins automation server can be enabled by setting `jenkins.enabled` to `true` in `values.yaml` or by adding the command line flag `--set jenkins.enabled=true` in the `helm install` command above.
0 commit comments