feat(helm): update chart connect ( 2.2.1 → 2.4.1 )#3184
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
feat(helm): update chart connect ( 2.2.1 → 2.4.1 )#3184renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
Path: --- /tmp/tmp.St2mHizSOl 2026-03-24 18:00:21.421652808 +0000
+++ /tmp/tmp.uL8wf973pL 2026-03-24 18:00:21.688653663 +0000
@@ -30,21 +30,33 @@
template:
metadata: {}
spec:
+ securityContext:
+ fsGroup: 999
+ runAsGroup: 999
+ runAsNonRoot: true
+ runAsUser: 999
+ seccompProfile:
+ type: RuntimeDefault
volumes:
- name: shared-data
emptyDir: {}
- name: credentials
secret:
secretName: op-credentials
+ items:
+ - key: 1password-credentials.json
+ path: 1password-credentials.json
tolerations: []
containers:
- name: connect-api
- image: 1password/connect-api:1.8.1
+ image: 1password/connect-api:1.8.2
imagePullPolicy: IfNotPresent
securityContext:
- runAsUser: 999
- runAsGroup: 999
allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ readOnlyRootFilesystem: true
resources:
limits:
memory: 128Mi
@@ -52,10 +64,7 @@
cpu: 0.2
env:
- name: OP_SESSION
- valueFrom:
- secretKeyRef:
- name: op-credentials
- key: 1password-credentials.json
+ value: /home/opuser/.op/1password-credentials.json
- name: OP_BUS_PORT
value: "11220"
- name: OP_BUS_PEERS
@@ -83,22 +92,24 @@
volumeMounts:
- mountPath: /home/opuser/.op/data
name: shared-data
+ - name: credentials
+ mountPath: /home/opuser/.op/1password-credentials.json
+ subPath: 1password-credentials.json
- name: connect-sync
- image: 1password/connect-sync:1.8.1
+ image: 1password/connect-sync:1.8.2
imagePullPolicy: IfNotPresent
securityContext:
- runAsUser: 999
- runAsGroup: 999
allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ readOnlyRootFilesystem: true
resources: {}
env:
- name: OP_HTTP_PORT
value: "8081"
- name: OP_SESSION
- valueFrom:
- secretKeyRef:
- name: op-credentials
- key: 1password-credentials.json
+ value: /home/opuser/.op/1password-credentials.json
- name: OP_BUS_PORT
value: "11221"
- name: OP_BUS_PEERS
@@ -123,6 +134,9 @@
volumeMounts:
- mountPath: /home/opuser/.op/data
name: shared-data
+ - name: credentials
+ mountPath: /home/opuser/.op/1password-credentials.json
+ subPath: 1password-credentials.json
---
# Source: onepassword/templates/clustersecretstore.yaml
@@ -156,8 +170,21 @@
helm.sh/hook-weight: "1"
spec:
restartPolicy: Never
+ securityContext:
+ fsGroup: 65532
+ runAsGroup: 65532
+ runAsNonRoot: true
+ runAsUser: 65532
+ seccompProfile:
+ type: RuntimeDefault
containers:
- name: curl
image: curlimages/curl:latest
command: [ "curl", "http://onepassword-connect:8080/health" ]
+ securityContext:
+ allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ readOnlyRootFilesystem: true |
441185b to
75f984c
Compare
| datasource | package | from | to | | ---------- | ------- | ----- | ----- | | helm | connect | 2.2.1 | 2.4.1 | Signed-off-by: Roger Rumao <rogerrum@users.noreply.github.com>
75f984c to
822dec9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.2.1→2.4.1Release Notes
1Password/connect-helm-charts (connect)
v2.4.1Compare Source
A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator
v2.4.0Compare Source
A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator
What's Changed
Features
Full Changelog: 1Password/connect-helm-charts@secrets-injector-1.2.0...connect-2.4.0
v2.3.0Compare Source
A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator
If you were using the double base64–encoding workaround for the credentials secret (
1password-credentials.json), that no longer works as this issue has been resolved. Credentials are now mounted as a file and work with the standard single base64 encoding that Kubernetes applies to Secret data. If you were double encoding the credentials you will need to update the secret.Change for reference:
OP_SESSIONpointing to the path. (#196)Features
operator.allowEmptyValuesvalue to configure the Operator's--allow-empty-valuesflag. Empty secret field values are skipped by default. (#264)securityContextand is Pod Security Standards (Restricted) compliant, so it can run in restricted namespaces without Pod Security Admission warnings. (#192, #210, #223)values.yamlfor consistency. (#268)operator.tls.trust.secret. (#171, #200)Fixes
operator.serviceAccountToken.keyfor the operator’s service account token instead ofoperator.token.key. (#266)connect.credentials_base64is set, since credentials are already provided. (#84)OP_SESSIONpointing to the path. (#196)New Contributors
Full Changelog: 1Password/connect-helm-charts@connect-2.2.1...connect-2.3.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.