Skip to content

Commit

Permalink
Upgrade to governor-api v0.3.0 (#32)
Browse files Browse the repository at this point in the history
* Upgrade to governor-api v0.3.0

* Update helm docs
  • Loading branch information
adammohammed authored Feb 5, 2025
1 parent 76f8d11 commit fd9d867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions charts/governor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ helm install governor-api equinixmetal/governor-api
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| api | object | `{"adminGroups":"governor-admins","db":{"connections":{"max_idle":20,"max_lifetime":0,"max_open":20},"secrets":{"crdbCrt":null,"enabled":false,"uri":null},"uri":{"existingSecret":"db-uri"}},"debug":false,"enabled":true,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/metal-toolbox/governor-api","tag":"v0.2.5"},"ingress":{"host":"api.governor.example.com","prefix":"api.governor"},"labels":{"app.kubernetes.io/component":"api","app.kubernetes.io/instance":"governor","app.kubernetes.io/managed-by":"Helm","app.kubernetes.io/name":"governor"},"matchLabels":{"app.kubernetes.io/instance":"governor","app.kubernetes.io/name":"governor"},"nats":{"credsPath":"/nats","secrets":{"clientCreds":null,"enabled":false},"subjectPrefix":"governor.events","url":null},"oidc":[{"audience":"","enabled":true,"issuer":"","jwksuri":"","rolesClaim":"","userClaim":""}],"readinessProbe":{"failureThreshold":3,"periodSeconds":20,"successThreshold":1,"timeoutSeconds":3},"replicaCount":2,"resources":{"limits":{"cpu":"500m","memory":"1Gi"},"requests":{"cpu":"100m","memory":"128Mi"}},"tracing":{"enabled":true,"secrets":{"enabled":false,"honeycombKey":null}}}` | governor-api settings |
| api | object | `{"adminGroups":"governor-admins","db":{"connections":{"max_idle":20,"max_lifetime":0,"max_open":20},"secrets":{"crdbCrt":null,"enabled":false,"uri":null},"uri":{"existingSecret":"db-uri"}},"debug":false,"enabled":true,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/metal-toolbox/governor-api","tag":"v0.3.0"},"ingress":{"host":"api.governor.example.com","prefix":"api.governor"},"labels":{"app.kubernetes.io/component":"api","app.kubernetes.io/instance":"governor","app.kubernetes.io/managed-by":"Helm","app.kubernetes.io/name":"governor"},"matchLabels":{"app.kubernetes.io/instance":"governor","app.kubernetes.io/name":"governor"},"nats":{"credsPath":"/nats","secrets":{"clientCreds":null,"enabled":false},"subjectPrefix":"governor.events","url":null},"oidc":[{"audience":"","enabled":true,"issuer":"","jwksuri":"","rolesClaim":"","userClaim":""}],"readinessProbe":{"failureThreshold":3,"periodSeconds":20,"successThreshold":1,"timeoutSeconds":3},"replicaCount":2,"resources":{"limits":{"cpu":"500m","memory":"1Gi"},"requests":{"cpu":"100m","memory":"128Mi"}},"tracing":{"enabled":true,"secrets":{"enabled":false,"honeycombKey":null}}}` | governor-api settings |
| api.adminGroups | string | `"governor-admins"` | admin group for highest level permissions in the governor-api |
| api.db | object | `{"connections":{"max_idle":20,"max_lifetime":0,"max_open":20},"secrets":{"crdbCrt":null,"enabled":false,"uri":null},"uri":{"existingSecret":"db-uri"}}` | settings for the backend db |
| api.db.secrets | object | `{"crdbCrt":null,"enabled":false,"uri":null}` | db secrets, set to `true` if you want to set the value directly in the chart (not recommended) |
| api.debug | bool | `false` | set to true to turn on debug logging |
| api.enabled | bool | `true` | enable the governor-api components |
| api.image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/metal-toolbox/governor-api","tag":"v0.2.5"}` | image for the governor-api |
| api.image | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/metal-toolbox/governor-api","tag":"v0.3.0"}` | image for the governor-api |
| api.image.pullPolicy | string | `"IfNotPresent"` | image pull policy for the governor-api container |
| api.image.repository | string | `"ghcr.io/metal-toolbox/governor-api"` | container image repository for the governor-api image |
| api.image.tag | string | `"v0.2.5"` | image tag version |
| api.image.tag | string | `"v0.3.0"` | image tag version |
| api.ingress | object | `{"host":"api.governor.example.com","prefix":"api.governor"}` | ingress settings for the governor-api |
| api.ingress.host | string | `"api.governor.example.com"` | host definition for the api ingress |
| api.ingress.prefix | string | `"api.governor"` | prefix use for the governor api ingress |
Expand Down
2 changes: 1 addition & 1 deletion charts/governor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ api:
# -- container image repository for the governor-api image
repository: ghcr.io/metal-toolbox/governor-api
# -- image tag version
tag: v0.2.5
tag: v0.3.0
# -- image pull policy for the governor-api container
pullPolicy: IfNotPresent

Expand Down

0 comments on commit fd9d867

Please sign in to comment.