Skip to content

Commit

Permalink
cont
Browse files Browse the repository at this point in the history
  • Loading branch information
chaen committed Nov 16, 2023
1 parent 5932b5e commit 24bbb6f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 27 deletions.
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ TODO
| diracxWeb.image.tag | string | `"latest"` | |
| diracxWeb.service.port | int | `8080` | |
| diracxWeb.service.type | string | `"ClusterIP"` | |
| elasticsearch."discovery.seed_hosts"[0] | string | `"elasticsearch-master-headless"` | |
| elasticsearch.clusterHealthCheckParams | string | `"local=true"` | |
| elasticsearch.enabled | bool | `true` | |
| elasticsearch.esJavaOpts | string | `"-Xms128m -Xmx128m"` | |
| elasticsearch.replicas | int | `1` | |
Expand Down Expand Up @@ -172,16 +174,8 @@ TODO
| image.repository | string | `"ghcr.io/diracgrid/diracx/server"` | |
| image.tag | string | `"latest"` | |
| ingress.annotations | object | `{}` | |
| ingress.annotations."nginx.ingress.kubernetes.io/use-regex" | string | `"true"` | |
| ingress.className | string | `"nginx"` | |
| ingress.className | string | `"nginx"` | |
| ingress.enabled | bool | `true` | |
| ingress.enabled | bool | `true` | |
| ingress.hosts[0].paths[0].backend.service.name | string | `"diracx-demo"` | |
| ingress.hosts[0].paths[0].backend.service.port.number | int | `8000` | |
| ingress.hosts[0].paths[0].path | string | `"/"` | |
| ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
| ingress.tls | list | `[]` | |
| ingress.tlsSecretName | string | `"myingress-cert"` | |
| init-cs.defaultUsers | list | `[]` | |
| init-cs.enabled | bool | `true` | |
Expand Down Expand Up @@ -273,6 +267,7 @@ TODO
| resources | object | `{}` | |
| securityContext | object | `{}` | |
| service.port | int | `8000` | |
| service.tls | list | `[]` | |
| service.type | string | `"ClusterIP"` | |
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.create | bool | `true` | |
Expand Down
40 changes: 21 additions & 19 deletions diracx/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ elasticsearch:
enabled: true
esJavaOpts: "-Xms128m -Xmx128m"
replicas: 1
clusterHealthCheckParams: "local=true"
discovery.seed_hosts: ["elasticsearch-master-headless"]
# Allocate smaller chunks of memory per pod.
resources:
requests:
Expand Down Expand Up @@ -538,25 +540,25 @@ service:
type: ClusterIP
port: 8000

ingress:
enabled: true
className: "nginx"
annotations:
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# Needed if you want to use a base path different from /
# #Use rewrite rules https://kubernetes.github.io/ingress-nginx/examples/rewrite/
nginx.ingress.kubernetes.io/use-regex: "true"
# nginx.ingress.kubernetes.io/rewrite-target: "/$2"
hosts:
- paths:
- path: /
pathType: Prefix
backend:
service:
name: diracx-demo
port:
number: 8000
# ingress:
# enabled: true
# className: "nginx"
# annotations:
# # kubernetes.io/ingress.class: nginx
# # kubernetes.io/tls-acme: "true"
# # Needed if you want to use a base path different from /
# # #Use rewrite rules https://kubernetes.github.io/ingress-nginx/examples/rewrite/
# nginx.ingress.kubernetes.io/use-regex: "true"
# # nginx.ingress.kubernetes.io/rewrite-target: "/$2"
# hosts:
# - paths:
# - path: /
# pathType: Prefix
# backend:
# service:
# name: diracx-demo
# port:
# number: 8000

tls: []
# - secretName: chart-example-tls
Expand Down

0 comments on commit 24bbb6f

Please sign in to comment.