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
Copy file name to clipboardExpand all lines: docs/content/advanced/microservices.md
+41-41Lines changed: 41 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,47 @@ The following example shows running the {{< short_app_ref >}} in [Oracle Kuberne
20
20
21
21
The command to connect to the **OKE** cluster will be output as part of the **IaC**.
22
22
23
+
### Images
24
+
25
+
You will need to build the {{< short_app_ref >}} container images and stage them in a container registry, such as the [OCI Container Registry](https://docs.oracle.com/en-us/iaas/Content/Registry/Concepts/registryoverview.htm) (**OCIR**).
More information on authenticating to **OCIR** can be found [here](https://docs.oracle.com/en-us/iaas/Content/Registry/Tasks/registrypushingimagesusingthedockercli.htm).
39
+
40
+
```bash
41
+
podman login <registry-domain>
42
+
```
43
+
44
+
Example:
45
+
```bash
46
+
podman login iad.ocir.io
47
+
```
48
+
49
+
You will be prompted for a username and token password.
50
+
51
+
1. Push the {{< short_app_ref >}} images:
52
+
53
+
More information on pushing images to **OCIR** can be found [here](https://docs.oracle.com/en-us/iaas/Content/Registry/Tasks/registrypushingimagesusingthedockercli.htm).
54
+
55
+
Example (the values for`<server_repository>` and `<server_repository>` are provided from the **IaC**):
56
+
```bash
57
+
podman tag ai-explorer-client:latest <client_repository>:latest
58
+
podman push <client_repository>:latest
59
+
60
+
podman tag ai-explorer-server:latest <server_repository>:latest
61
+
podman push <server_repository>:latest
62
+
```
63
+
23
64
### Ingress
24
65
25
66
To access the {{< short_app_ref >}} GUI and API Server, you can either use a port-forward or an Ingress service. For demonstration purposes, the [Ingress-Nginx Controller](https://kubernetes.github.io/ingress-nginx/deploy/) will be used to create a [Flexible LoadBalancer](https://docs.oracle.com/en-us/iaas/Content/NetworkLoadBalancer/overview.htm) in**OCI**.
@@ -104,47 +145,6 @@ These will be output as part of the **IaC** but can be removed from the code if
104
145
kubectl apply -f service.yaml
105
146
```
106
147
107
-
### Images
108
-
109
-
You will need to build the {{< short_app_ref >}} container images and stage them in a container registry, such as the [OCI Container Registry](https://docs.oracle.com/en-us/iaas/Content/Registry/Concepts/registryoverview.htm) (**OCIR**).
More information on authenticating to **OCIR** can be found [here](https://docs.oracle.com/en-us/iaas/Content/Registry/Tasks/registrypushingimagesusingthedockercli.htm).
123
-
124
-
```bash
125
-
podman login <registry-domain>
126
-
```
127
-
128
-
Example:
129
-
```bash
130
-
podman login iad.ocir.io
131
-
```
132
-
133
-
You will be prompted for a username and token password.
134
-
135
-
1. Push the {{< short_app_ref >}} images:
136
-
137
-
More information on pushing images to **OCIR** can be found [here](https://docs.oracle.com/en-us/iaas/Content/Registry/Tasks/registrypushingimagesusingthedockercli.htm).
138
-
139
-
Example (the values for `<server_repository>` and `<server_repository>` are provided from the **IaC**):
140
-
```bash
141
-
podman tag ai-explorer-client:latest <client_repository>:latest
142
-
podman push <client_repository>:latest
143
-
144
-
podman tag ai-explorer-server:latest <server_repository>:latest
145
-
podman push <server_repository>:latest
146
-
```
147
-
148
148
### The {{< short_app_ref >}}
149
149
150
150
The {{< short_app_ref >}} can be deployed using the [Helm](https://helm.sh/) chart provided with the source:
Copy file name to clipboardExpand all lines: helm/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This Helm Chart requires three Kubernetes Secrets to be created prior to install
6
6
7
7
### Registry Credentials
8
8
9
-
**Note**: This requirement maybe deprecated in OCI/OKE: [Credential Provider](https://github.com/oracle-devrel/oke-credential-provider-for-ocir/issues/2)
9
+
**Note**: This requirement is deprecated in OCI/OKE when using the IaC from opentofu: [Credential Provider](https://github.com/oracle-devrel/oke-credential-provider-for-ocir)
0 commit comments