File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 7272 value : " {{ .Values.operator.pollingInterval }}"
7373 - name : AUTO_RESTART
7474 value : " {{ .Values.operator.autoRestart }}"
75- {{- if eq .Values.operator.authMethod "serviceaccount " }}
75+ {{- if eq .Values.operator.authMethod "service-account " }}
7676 - name : OP_SERVICE_ACCOUNT_TOKEN
7777 valueFrom :
7878 secretKeyRef :
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://json-schema.org/draft-07/schema#" ,
3+ "type" : " object" ,
4+ "properties" : {
5+ "operator" : {
6+ "type" : " object" ,
7+ "properties" : {
8+ "authMethod" : {
9+ "type" : " string" ,
10+ "enum" : [" connect" , " service-account" ],
11+ "description" : " Denotes authentication method that 1Password Operator will use to access 1Password secrets."
12+ }
13+ }
14+ }
15+ }
16+ }
Original file line number Diff line number Diff line change @@ -241,10 +241,10 @@ operator:
241241 # Denotes whether the 1Password Operator will be deployed
242242 create : false
243243
244- # Denotes authentication method that 1Password Operator will use to access secrets
244+ # Denotes authentication method that 1Password Operator will use to access 1Password secrets
245245 # Valid values:
246- # - connect: sets OP_CONNECT_TOKEN
247- # - serviceaccount : sets OP_SERVICE_ACCOUNT_TOKEN
246+ # - connect: sets OP_CONNECT_HOST and OP_CONNECT_TOKEN
247+ # - service-account : sets OP_SERVICE_ACCOUNT_TOKEN
248248 authMethod : connect
249249
250250 # The number of replicas to run the 1Password Connect Operator deployment
You can’t perform that action at this time.
0 commit comments