Skip to content

Commit

Permalink
Merge pull request #155 from arangodb/feature/operator-ha
Browse files Browse the repository at this point in the history
Operator high-availability
  • Loading branch information
ewoutp committed Jun 6, 2018
2 parents 095dc19 + 6689db4 commit 659c5c9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: {{ .DeploymentReplication.OperatorDeploymentName }}
namespace: {{ .DeploymentReplication.Operator.Namespace }}
spec:
replicas: 1
replicas: 2
strategy:
type: Recreate
template:
Expand Down Expand Up @@ -50,3 +50,12 @@ spec:
scheme: HTTPS
initialDelaySeconds: 5
periodSeconds: 10
tolerations:
- key: "node.kubernetes.io/unreachable"
operator: "Exists"
effect: "NoExecute"
tolerationSeconds: 5
- key: "node.kubernetes.io/not-ready"
operator: "Exists"
effect: "NoExecute"
tolerationSeconds: 5
2 changes: 1 addition & 1 deletion manifests/templates/deployment/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: {{ .Deployment.OperatorDeploymentName }}
namespace: {{ .Deployment.Operator.Namespace }}
spec:
replicas: 1
replicas: 2
strategy:
type: Recreate
template:
Expand Down
2 changes: 1 addition & 1 deletion manifests/templates/storage/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ metadata:
name: {{ .Storage.OperatorDeploymentName }}
namespace: {{ .Storage.Operator.Namespace }}
spec:
replicas: 1
replicas: 2
strategy:
type: Recreate
template:
Expand Down

0 comments on commit 659c5c9

Please sign in to comment.