Skip to content

Commit

Permalink
Merge pull request #331 from SgtCoDFish/backport-name-override
Browse files Browse the repository at this point in the history
[release-0.9] Backport name override
  • Loading branch information
jetstack-bot authored Mar 26, 2024
2 parents 5585cf0 + 3066f79 commit 5c03ab2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions deploy/charts/trust-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ replicaCount: ${REPLICAS_OVERRIDE:=3}
#### **nameOverride** ~ `string`
> Default value:
> ```yaml
> ""
> ```
#### **namespace** ~ `string`
> Default value:
> ```yaml
Expand Down
7 changes: 7 additions & 0 deletions deploy/charts/trust-manager/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
"imagePullSecrets": {
"$ref": "#/$defs/helm-values.imagePullSecrets"
},
"nameOverride": {
"$ref": "#/$defs/helm-values.nameOverride"
},
"namespace": {
"$ref": "#/$defs/helm-values.namespace"
},
Expand Down Expand Up @@ -516,6 +519,10 @@
"default": [],
"items": {}
},
"helm-values.nameOverride": {
"type": "string",
"default": ""
},
"helm-values.namespace": {
"description": "The namespace to install trust-manager into.\nIf not set, the namespace of the release is used.\nThis is helpful when installing trust-manager as a chart dependency (sub chart).",
"type": "string",
Expand Down
3 changes: 2 additions & 1 deletion deploy/charts/trust-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ crds:
# +docs:type=number,string,null
replicaCount: 1

nameOverride: ""

# The namespace to install trust-manager into.
# If not set, the namespace of the release is used.
# This is helpful when installing trust-manager as a chart dependency (sub chart).
Expand Down Expand Up @@ -173,7 +175,6 @@ filterExpiredCertificates:
# Whether to filter expired certificates from the trust bundle.
enabled: false


app:
# The verbosity of trust-manager logging. This takes a value from 1-5, with the higher value being more verbose.
logLevel: 1
Expand Down

0 comments on commit 5c03ab2

Please sign in to comment.