Updating chart to new specs.
This commit is contained in:
parent
1c3dc0b172
commit
b8b3f879a8
1 changed files with 32 additions and 32 deletions
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrelease-helm-v2beta1.json
|
||||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||||
kind: HelmRelease
|
kind: HelmRelease
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -66,6 +67,37 @@ spec:
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
sync:
|
||||||
|
name: sync
|
||||||
|
image: docker.io/1password/connect-sync:1.7.2@sha256:fe527ed9d81f193d8dfbba4140d61f9e8c8dceb0966b3009259087504e5ff79c
|
||||||
|
env:
|
||||||
|
- name: OP_SESSION
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: onepassword-connect-secret
|
||||||
|
key: onepassword-credentials.json
|
||||||
|
- name: OP_HTTP_PORT
|
||||||
|
value: &port 8081
|
||||||
|
- name: OP_BUS_PORT
|
||||||
|
value: "11221"
|
||||||
|
- name: OP_BUS_PEERS
|
||||||
|
value: "localhost:11220"
|
||||||
|
probes:
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /health
|
||||||
|
port: *port
|
||||||
|
initialDelaySeconds: 15
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /heartbeat
|
||||||
|
port: *port
|
||||||
|
failureThreshold: 3
|
||||||
|
periodSeconds: 30
|
||||||
|
initialDelaySeconds: 15
|
||||||
|
volumeMounts:
|
||||||
|
- name: shared
|
||||||
|
mountPath: /home/opuser/.op/data
|
||||||
|
|
||||||
service:
|
service:
|
||||||
main:
|
main:
|
||||||
|
@ -108,35 +140,3 @@ spec:
|
||||||
memory: 10Mi
|
memory: 10Mi
|
||||||
limits:
|
limits:
|
||||||
memory: 100Mi
|
memory: 100Mi
|
||||||
|
|
||||||
sidecars:
|
|
||||||
sync:
|
|
||||||
name: sync
|
|
||||||
image: docker.io/1password/connect-sync:1.7.2@sha256:fe527ed9d81f193d8dfbba4140d61f9e8c8dceb0966b3009259087504e5ff79c
|
|
||||||
env:
|
|
||||||
- name: OP_SESSION
|
|
||||||
valueFrom:
|
|
||||||
secretKeyRef:
|
|
||||||
name: onepassword-connect-secret
|
|
||||||
key: onepassword-credentials.json
|
|
||||||
- name: OP_HTTP_PORT
|
|
||||||
value: &port 8081
|
|
||||||
- name: OP_BUS_PORT
|
|
||||||
value: "11221"
|
|
||||||
- name: OP_BUS_PEERS
|
|
||||||
value: "localhost:11220"
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /health
|
|
||||||
port: *port
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /heartbeat
|
|
||||||
port: *port
|
|
||||||
failureThreshold: 3
|
|
||||||
periodSeconds: 30
|
|
||||||
initialDelaySeconds: 15
|
|
||||||
volumeMounts:
|
|
||||||
- name: shared
|
|
||||||
mountPath: /home/opuser/.op/data
|
|
||||||
|
|
Reference in a new issue