Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add replicas to operator deployment #132

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/connect/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ maintainers:
- name: 1Password Secrets Integrations Team
email: [email protected]
icon: https://avatars.githubusercontent.com/u/38230737
appVersion: "1.5.7"
appVersion: "1.6.0"
2 changes: 1 addition & 1 deletion charts/connect/templates/operator-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
replicas: 1
replicas: {{ .Values.operator.replicas }}
selector:
matchLabels:
name: {{ .Values.connect.applicationName }}
Expand Down
3 changes: 3 additions & 0 deletions charts/connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ operator:
# Denotes whether the 1Password Operator will be deployed
create: false

# The number of replicas to run the 1Password Operator deployment
replicas: 1

# Denotes whether the 1Password Operator will automatically restart deployments based on associated updated secrets.
autoRestart: false

Expand Down