chore(deps): update helm release connect to v2.3.0#1348
Merged
renovate[bot] merged 1 commit intomainfrom Feb 17, 2026
Merged
Conversation
--- kubernetes/apps/infrastructure/secrets/onepassword/app Kustomization: flux-system/cluster-apps-onepassword HelmRelease: secrets/onepassword
+++ kubernetes/apps/infrastructure/secrets/onepassword/app Kustomization: flux-system/cluster-apps-onepassword HelmRelease: secrets/onepassword
@@ -13,13 +13,13 @@
chart: connect
interval: 1m
sourceRef:
kind: HelmRepository
name: 1password
namespace: flux-system
- version: 2.2.1
+ version: 2.3.0
install:
crds: CreateReplace
interval: 5m
upgrade:
crds: CreateReplace
values: |
--- HelmRelease: secrets/onepassword Deployment: secrets/onepassword-connect
+++ HelmRelease: secrets/onepassword Deployment: secrets/onepassword-connect
@@ -18,38 +18,47 @@
metadata:
labels:
app: onepassword-connect
version: 1.8.1
app.kubernetes.io/component: connect
spec:
+ securityContext:
+ fsGroup: 999
+ runAsGroup: 999
+ runAsNonRoot: true
+ runAsUser: 999
+ seccompProfile:
+ type: RuntimeDefault
volumes:
- name: shared-data
emptyDir: {}
- name: credentials
secret:
secretName: onepassword-api
+ items:
+ - key: session
+ path: 1password-credentials.json
tolerations: []
containers:
- name: connect-api
image: 1password/connect-api:1.8.1
imagePullPolicy: IfNotPresent
securityContext:
- runAsUser: 999
- runAsGroup: 999
allowPrivilegeEscalation: false
+ capabilities:
+ drop:
+ - ALL
+ readOnlyRootFilesystem: true
resources:
limits:
memory: 128Mi
requests:
cpu: 0.2
env:
- name: OP_SESSION
- valueFrom:
- secretKeyRef:
- name: onepassword-api
- key: session
+ value: /home/opuser/.op/1password-credentials.json
- name: OP_BUS_PORT
value: '11220'
- name: OP_BUS_PEERS
value: localhost:11221
- name: OP_HTTP_PORT
value: '8080'
@@ -69,28 +78,30 @@
failureThreshold: 3
periodSeconds: 30
initialDelaySeconds: 15
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
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: onepassword-api
- key: session
+ value: /home/opuser/.op/1password-credentials.json
- name: OP_BUS_PORT
value: '11221'
- name: OP_BUS_PEERS
value: localhost:11220
- name: OP_LOG_LEVEL
value: info
@@ -107,7 +118,10 @@
failureThreshold: 3
periodSeconds: 30
initialDelaySeconds: 15
volumeMounts:
- mountPath: /home/opuser/.op/data
name: shared-data
+ - name: credentials
+ mountPath: /home/opuser/.op/1password-credentials.json
+ subPath: 1password-credentials.json
--- HelmRelease: secrets/onepassword Deployment: secrets/onepassword-connect-operator
+++ HelmRelease: secrets/onepassword Deployment: secrets/onepassword-connect-operator
@@ -17,25 +17,32 @@
template:
metadata:
labels:
name: onepassword-connect
app.kubernetes.io/component: operator
spec:
+ securityContext:
+ fsGroup: 65532
+ runAsGroup: 65532
+ runAsNonRoot: true
+ runAsUser: 65532
+ seccompProfile:
+ type: RuntimeDefault
tolerations: []
serviceAccountName: onepassword-connect-operator
+ volumes: null
containers:
- name: onepassword-connect
- image: 1password/onepassword-operator:1.10.1
+ image: 1password/onepassword-operator:1.11.0
imagePullPolicy: IfNotPresent
securityContext:
- runAsUser: 65532
- runAsGroup: 65532
allowPrivilegeEscalation: false
capabilities:
drop:
- - all
+ - ALL
+ readOnlyRootFilesystem: true
command:
- /manager
args:
- --zap-log-level=info
env:
- name: WATCH_NAMESPACE
@@ -55,7 +62,8 @@
- name: OP_CONNECT_TOKEN
valueFrom:
secretKeyRef:
name: onepassword-api
key: token
resources: {}
+ volumeMounts: null
|
bo0tzz
approved these changes
Feb 17, 2026
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.3.0Release Notes
1Password/connect-helm-charts (connect)
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 - "before 9am on tuesday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, 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.