Skip to content

Commit

Permalink
Merge pull request #192 from SgtCoDFish/tmrename
Browse files Browse the repository at this point in the history
Update a couple of instances of the old project name
  • Loading branch information
jetstack-bot authored Oct 9, 2023
2 parents f018d5d + 53465e4 commit 2f328d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions deploy/charts/trust-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Kubernetes: `>= 1.25.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | Kubernetes Affinty; see https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core |
| app.logLevel | int | `1` | Verbosity of trust logging; takes a value from 1-5, with higher being more verbose |
| app.logLevel | int | `1` | Verbosity of trust-manager logging; takes a value from 1-5, with higher being more verbose |
| app.metrics.port | int | `9402` | Port for exposing Prometheus metrics on 0.0.0.0 on path '/metrics'. |
| app.metrics.service | object | `{"enabled":true,"servicemonitor":{"enabled":false,"interval":"10s","labels":{},"prometheusInstance":"default","scrapeTimeout":"5s"},"type":"ClusterIP"}` | Service to expose metrics endpoint. |
| app.metrics.service.enabled | bool | `true` | Create a Service resource to expose metrics endpoint. |
| app.metrics.service.servicemonitor | object | `{"enabled":false,"interval":"10s","labels":{},"prometheusInstance":"default","scrapeTimeout":"5s"}` | ServiceMonitor resource for this Service. |
| app.metrics.service.type | string | `"ClusterIP"` | Service type to expose metrics. |
| app.readinessProbe.path | string | `"/readyz"` | Path on which to expose trust HTTP readiness probe using default network interface. |
| app.readinessProbe.port | int | `6060` | Container port on which to expose trust HTTP readiness probe using default network interface. |
| app.readinessProbe.path | string | `"/readyz"` | Path on which to expose trust-manager HTTP readiness probe using default network interface. |
| app.readinessProbe.port | int | `6060` | Container port on which to expose trust-manager HTTP readiness probe using default network interface. |
| app.securityContext.seccompProfileEnabled | bool | `true` | If false, disables the default seccomp profile, which might be required to run on certain platforms |
| app.trust.namespace | string | `"cert-manager"` | Namespace used as trust source. Note that the namespace _must_ exist before installing trust-manager. |
| app.webhook.host | string | `"0.0.0.0"` | Host that the webhook listens on. |
Expand All @@ -56,7 +56,7 @@ Kubernetes: `>= 1.25.0-0`
| image.tag | string | `nil` | Target image version tag. Defaults to the chart's appVersion. |
| imagePullSecrets | list | `[]` | For Private docker registries, authentication is needed. Registry secrets are applied to the service account |
| nodeSelector | object | `{"kubernetes.io/os":"linux"}` | Configure the nodeSelector; defaults to any Linux node (trust-manager doesn't support Windows nodes) |
| replicaCount | int | `1` | Number of replicas of trust to run. |
| replicaCount | int | `1` | Number of replicas of trust-manager to run. |
| resources | object | `{}` | |
| tolerations | list | `[]` | List of Kubernetes Tolerations; see https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core |
| topologySpreadConstraints | list | `[]` | List of Kubernetes TopologySpreadConstraints; see https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#topologyspreadconstraint-v1-core |
8 changes: 4 additions & 4 deletions deploy/charts/trust-manager/values.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -- Number of replicas of trust to run.
# -- Number of replicas of trust-manager to run.
replicaCount: 1

# -- For Private docker registries, authentication is needed. Registry secrets are applied to the service account
Expand Down Expand Up @@ -43,7 +43,7 @@ defaultPackageImage:
pullPolicy: IfNotPresent

app:
# -- Verbosity of trust logging; takes a value from 1-5, with higher being more verbose
# -- Verbosity of trust-manager logging; takes a value from 1-5, with higher being more verbose
logLevel: 1

metrics:
Expand All @@ -64,9 +64,9 @@ app:
labels: {}

readinessProbe:
# -- Container port on which to expose trust HTTP readiness probe using default network interface.
# -- Container port on which to expose trust-manager HTTP readiness probe using default network interface.
port: 6060
# -- Path on which to expose trust HTTP readiness probe using default network interface.
# -- Path on which to expose trust-manager HTTP readiness probe using default network interface.
path: "/readyz"

trust:
Expand Down

0 comments on commit 2f328d2

Please sign in to comment.