Skip to content

Commit

Permalink
Remove readiness probe
Browse files Browse the repository at this point in the history
  • Loading branch information
Claes Mogren committed Jun 15, 2020
1 parent af54066 commit 7b12924
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 26 deletions.
6 changes: 0 additions & 6 deletions config/master/aws-k8s-cni-cn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,6 @@
"ports":
- "containerPort": 61678
"name": "metrics"
"readinessProbe":
"exec":
"command":
- "/app/grpc-health-probe"
- "-addr=:50051"
"initialDelaySeconds": 35
"resources":
"requests":
"cpu": "10m"
Expand Down
6 changes: 0 additions & 6 deletions config/master/aws-k8s-cni-us-gov-east-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,6 @@
"ports":
- "containerPort": 61678
"name": "metrics"
"readinessProbe":
"exec":
"command":
- "/app/grpc-health-probe"
- "-addr=:50051"
"initialDelaySeconds": 35
"resources":
"requests":
"cpu": "10m"
Expand Down
6 changes: 0 additions & 6 deletions config/master/aws-k8s-cni-us-gov-west-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,6 @@
"ports":
- "containerPort": 61678
"name": "metrics"
"readinessProbe":
"exec":
"command":
- "/app/grpc-health-probe"
- "-addr=:50051"
"initialDelaySeconds": 35
"resources":
"requests":
"cpu": "10m"
Expand Down
6 changes: 0 additions & 6 deletions config/master/aws-k8s-cni.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,6 @@
"ports":
- "containerPort": 61678
"name": "metrics"
"readinessProbe":
"exec":
"command":
- "/app/grpc-health-probe"
- "-addr=:50051"
"initialDelaySeconds": 35
"resources":
"requests":
"cpu": "10m"
Expand Down
3 changes: 1 addition & 2 deletions config/master/manifests.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,12 @@ local awsnode = {
name: "metrics"
}],
name: "aws-node",
readinessProbe: {
livenessProbe: {
exec: {
command: ["/app/grpc-health-probe", "-addr=:50051"],
},
initialDelaySeconds: 35,
},
livenessProbe: self.readinessProbe,
env_:: {
AWS_VPC_ENI_MTU: "9001",
AWS_VPC_K8S_CNI_CONFIGURE_RPFILTER: "false",
Expand Down

0 comments on commit 7b12924

Please sign in to comment.