Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions charts/connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To disable this, you can run `helm install` with the [`--skip-crds` flag](https:
| acceptanceTests.enabled | bool | `false` | Enable acceptance tests for the chart |
| acceptanceTests.fixtures | object | `{}` | Test fixtures configuration for acceptance tests |
| acceptanceTests.healthCheck.enabled | bool | `true` | Enable the health check test |
| acceptanceTests.healthCheck.image.repository | string | `"curlimages/curl"` | The image repository for the health check test container |
| acceptanceTests.healthCheck.image.repository | string | `"docker.io/curlimages/curl"` | The image repository for the health check test container |
| acceptanceTests.healthCheck.image.tag | string | `"latest"` | The image tag for the health check test container |
| acceptanceTests.podSecurityContext | object | `{"fsGroup":65532,"runAsGroup":65532,"runAsNonRoot":true,"runAsUser":65532,"seccompProfile":{"type":"RuntimeDefault"}}` | Pod securityContext to be added to the acceptance test pods. |
| acceptanceTests.securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"readOnlyRootFilesystem":true}` | Container securityContext to be added to the acceptance test containers. |
Expand All @@ -85,7 +85,7 @@ To disable this, you can run `helm install` with the [`--skip-crds` flag](https:
| connect.annotations | object | `{}` | Additional annotations to be added to the Connect API deployment resource. |
| connect.api.httpPort | int | `8080` | The port the Connect API is served on when TLS is disabled |
| connect.api.httpsPort | int | `8443` | The port the Connect API is served on when TLS is enabled |
| connect.api.imageRepository | string | `"1password/connect-api"` | The 1Password Connect API repository |
| connect.api.imageRepository | string | `"docker.io/1password/connect-api"` | The 1Password Connect API repository |
| connect.api.logLevel | string | `"info"` | Log level of the Connect API container. Valid options are: trace, debug, info, warn, error. |
| connect.api.name | string | `"connect-api"` | The name of the 1Password Connect API container |
| connect.api.resources | object | `{"limits":{"memory":"128Mi"},"requests":{"cpu":0.2}}` | The resources requests/limits for the 1Password Connect API pod |
Expand Down Expand Up @@ -144,7 +144,7 @@ To disable this, you can run `helm install` with the [`--skip-crds` flag](https:
| connect.serviceAnnotations | object | `{}` | Additional annotations to be added to the service. |
| connect.serviceType | string | `"ClusterIP"` | The type of Service resource to create for the Connect API and sync services. |
| connect.sync.httpPort | int | `8081` | The port serving the health of the Sync container |
| connect.sync.imageRepository | string | `"1password/connect-sync"` | The 1Password Connect Sync repository |
| connect.sync.imageRepository | string | `"docker.io/1password/connect-sync"` | The 1Password Connect Sync repository |
| connect.sync.logLevel | string | `"info"` | Log level of the Connect Sync container. Valid options are: trace, debug, info, warn, error. |
| connect.sync.name | string | `"connect-sync"` | The name of the 1Password Connect Sync container |
| connect.sync.resources | object | `{}` | The resources requests/limits for the 1Password Connect Sync pod |
Expand Down Expand Up @@ -175,7 +175,7 @@ To disable this, you can run `helm install` with the [`--skip-crds` flag](https:
| operator.hpa.minReplicas | int | `1` | Minimum number of replicas for the Operator pod |
| operator.imagePullPolicy | string | `"IfNotPresent"` | The 1Password Operator image pull policy |
| operator.imagePullSecrets | list | `[]` | List of secret names to use as image pull secrets. Secrets must exist in the same namespace. |
| operator.imageRepository | string | `"1password/onepassword-operator"` | The 1Password Operator repository |
| operator.imageRepository | string | `"docker.io/1password/onepassword-operator"` | The 1Password Operator repository |
| operator.labels | object | `{}` | Additional labels to be added to the Operator deployment resource. |
| operator.logLevel | string | `"info"` | Log level of the Operator container. Valid options are: debug, info and error. |
| operator.nodeSelector | object | `{}` | [Node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) stanza for the operator pod |
Expand Down
8 changes: 4 additions & 4 deletions charts/connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ connect:
# -- The name of the 1Password Connect API container
name: connect-api
# -- The 1Password Connect API repository
imageRepository: 1password/connect-api
imageRepository: docker.io/1password/connect-api
# -- The resources requests/limits for the 1Password Connect API pod
resources:
limits:
Expand Down Expand Up @@ -58,7 +58,7 @@ connect:
# -- The name of the 1Password Connect Sync container
name: connect-sync
# -- The 1Password Connect Sync repository
imageRepository: 1password/connect-sync
imageRepository: docker.io/1password/connect-sync
# -- The resources requests/limits for the 1Password Connect Sync pod
resources: {}
# -- The port serving the health of the Sync container
Expand Down Expand Up @@ -286,7 +286,7 @@ operator:
imagePullSecrets: []

# -- The 1Password Operator repository
imageRepository: 1password/onepassword-operator
imageRepository: docker.io/1password/onepassword-operator

# -- How often the 1Password Operator will poll for secrets updates.
pollingInterval: 600
Expand Down Expand Up @@ -476,7 +476,7 @@ acceptanceTests:
enabled: true
image:
# -- The image repository for the health check test container
repository: curlimages/curl
repository: docker.io/curlimages/curl
# -- The image tag for the health check test container
tag: "latest"

Expand Down
2 changes: 1 addition & 1 deletion charts/secrets-injector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ injector:
| injector.customEnvVars | list | `[]` | Custom Environment Variables for the 1Password Secrets Injector container that are not specified in this helm chart. |
| injector.imagePullPolicy | string | `"IfNotPresent"` | The 1Password Secrets Injector docker image policy. |
| injector.imagePullSecrets | list | `[]` | Global list of secret names to use as image pull secrets for all pod specs in the chart. Secrets must exist in the same namespace |
| injector.imageRepository | string | `"1password/kubernetes-secrets-injector"` | The 1Password Secrets Injector docker image repository |
| injector.imageRepository | string | `"docker.io/1password/kubernetes-secrets-injector"` | The 1Password Secrets Injector docker image repository |
| injector.labels | object | `{}` | Additional labels to be added to the Secrets Injector deployment resource. |
| injector.nodeSelector | object | `{}` | [Node selector](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodeselector) stanza for the Secrets Injector pod |
| injector.podAnnotations | object | `{}` | Additional annotations to be added to the Secrets Injector pod. |
Expand Down
2 changes: 1 addition & 1 deletion charts/secrets-injector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ injector:
# -- Global list of secret names to use as image pull secrets for all pod specs in the chart. Secrets must exist in the same namespace
imagePullSecrets: []
# -- The 1Password Secrets Injector docker image repository
imageRepository: 1password/kubernetes-secrets-injector
imageRepository: docker.io/1password/kubernetes-secrets-injector
# -- The port the Secrets Injector exposes
port: 443
# -- The port the Secrets Injector API sends requests to the pod
Expand Down
Loading