Skip to content

feat(helm): update chart connect ( 2.2.1 → 2.4.1 ) - #3312

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/connect-2.x
Open

feat(helm): update chart connect ( 2.2.1 → 2.4.1 )#3312
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/connect-2.x

Conversation

@renovate

@renovate renovate Bot commented Apr 19, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
connect (source) minor 2.2.12.4.1

Release Notes

1Password/connect-helm-charts (connect)

v2.4.1

Compare Source

A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator

What's Changed

Fixes

1Password Operator image is updated to v1.12.0 to brings fixes for the operator.

Full Changelog: 1Password/connect-helm-charts@connect-2.4.0...connect-2.4.1

v2.4.0

Compare Source

A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator

What's Changed

Features

  • Bump Connect version to v1.8.2
  • Add configurable liveness and readiness probes for the Operator. (#​275)

Full Changelog: 1Password/connect-helm-charts@secrets-injector-1.2.0...connect-2.4.0

v2.3.0

Compare Source

A Helm chart for deploying 1Password Connect and the 1Password Connect Kubernetes Operator

⚠️ Credentials (2.3.0):

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:

  • Fix credential secret when set from values with correct encoding and mount credentials as a file with OP_SESSION pointing to the path. (#​196)
Features
  • Connect Helm chart supports operator.allowEmptyValues value to configure the Operator's --allow-empty-values flag. Empty secret field values are skipped by default. (#​264)
  • Connect Helm chart supports configurable securityContext and is Pod Security Standards (Restricted) compliant, so it can run in restricted namespaces without Pod Security Admission warnings. (#​192, #​210, #​223)
  • README values tables are now auto-generated from values.yaml for consistency. (#​268)
  • Connect Helm chart supports operator trust for self-signed or internal CA certificates via operator.tls.trust.secret. (#​171, #​200)
Fixes
  • Connect Helm chart now uses operator.serviceAccountToken.key for the operator’s service account token instead of operator.token.key. (#​266)
  • Connect Helm chart supports a custom ServiceAccount for the Connect deployment, allowing a dedicated or pre-existing service account to be specified. (#​249)
  • Fix expired dev Slack link in README. {#​265}
  • Hide the credentials warning when connect.credentials_base64 is set, since credentials are already provided. (#​84)
  • Fix credential secret when set from values with correct encoding and mount credentials as a file with OP_SESSION pointing to the path. (#​196)
  • 1Password Operator image is updated to v1.11.0 to brings fixes for the operator.
New Contributors

Full Changelog: 1Password/connect-helm-charts@connect-2.2.1...connect-2.3.0


Configuration

📅 Schedule: (in timezone America/Chicago)

  • 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@github-actions

github-actions Bot commented Apr 19, 2026

Copy link
Copy Markdown

Path: infrastructure/onepassword
Version: 2.2.1 -> 2.4.1

--- /tmp/tmp.xceMHA1Fda	2026-08-12 03:56:09.592199094 +0000
+++ /tmp/tmp.MJgzWqxCd5	2026-08-12 03:56:09.875198502 +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: ghcr.io/1password/connect-api:1.8.1
+          image: ghcr.io/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: ghcr.io/1password/connect-sync:1.8.1
+          image: ghcr.io/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
@@ -162,10 +176,10 @@
   selector:
     matchLabels:
       app.kubernetes.io/component: connect
-      helm.sh/chart: connect-2.2.1
+      helm.sh/chart: connect-2.4.1
       app.kubernetes.io/name: connect
       app.kubernetes.io/instance: release-name
-      app.kubernetes.io/version: "1.8.1"
+      app.kubernetes.io/version: "1.8.2"
       app.kubernetes.io/managed-by: Helm
 
 ---
@@ -180,8 +194,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

@renovate
renovate Bot force-pushed the renovate/connect-2.x branch 2 times, most recently from 2dad9a8 to 39f1117 Compare May 22, 2026 21:16
@renovate
renovate Bot force-pushed the renovate/connect-2.x branch from 39f1117 to 034314b Compare June 18, 2026 17:45
@renovate
renovate Bot force-pushed the renovate/connect-2.x branch from 034314b to cf6c2b8 Compare July 20, 2026 20:41
@renovate
renovate Bot force-pushed the renovate/connect-2.x branch from cf6c2b8 to fdb854f Compare July 30, 2026 16:06
| datasource | package | from  | to    |
| ---------- | ------- | ----- | ----- |
| helm       | connect | 2.2.1 | 2.4.1 |


Signed-off-by: Roger Rumao <rogerrum@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/connect-2.x branch from fdb854f to 38076d8 Compare August 12, 2026 03:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants