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
For OpenShift clusters, the chart supports native OpenShift Routes instead of Kubernetes Ingress. Routes provide automatic TLS termination and integrate with OpenShift's built-in router.
**Note:** The `--disable-openapi-validation` flag is required **only when using OpenShift Routes**. While Helm can validate OpenShift CRDs, validation often fails due to schema inconsistencies between the chart and OpenShift's API server (e.g., field type mismatches, stale cached schemas, or strict enforcement of deprecated fields). This flag skips Helm's client-side validation, allowing the manifests to be sent directly to OpenShift where the admission controller performs the authoritative validation. This flag is not needed for standard Kubernetes Ingress deployments.
Routes are automatically generated using the pattern: `<service-name>.<namespace>.<domain>`
160
+
161
+
Default service names are: `frontend`, `chat`, `codegen`, `coderun`
162
+
163
+
To customize route names or hostnames for a specific service:
164
+
165
+
```yaml
166
+
frontend:
167
+
route:
168
+
name: "studio"# Changes route to: studio.qiskitstudio.example.com
169
+
host: "my-custom-hostname.example.com"# Or override hostname completely
170
+
```
171
+
129
172
### Local Deployment (Default)
130
173
131
174
The Quick Start guide above uses the `values-local.yaml` file, which is the recommended method for local development. This configuration disables Ingress and exposes services via `NodePort` for easy access on your local machine.
@@ -209,7 +252,11 @@ This table lists the parameters that you are most likely to configure for both l
209
252
| `codegen.image.tag` | The codegen image tag. | `0.5.0` |
210
253
| `coderun.image.repository` | The coderun image repository. | `coderun-agent` |
211
254
| `coderun.image.tag` | The coderun image tag. | `v0.0.3` |
212
-
|`ingress.enabled`| Whether to enable ingress. |`false`|
0 commit comments