Skip to content

Commit

Permalink
Merge pull request #4798 from zalando-incubator/enable/ingress-v1-in-…
Browse files Browse the repository at this point in the history
…test

enable: ingress v1 in test clusters
  • Loading branch information
szuecs authored Nov 30, 2021
2 parents 4cac048 + 7a99695 commit b036ca2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ skipper_ingress_max_replicas: "50"
skipper_ingress_min_replicas: "3"
skipper_ingress_cpu: "1000m"
skipper_ingress_memory: "1Gi"
{{if eq .Cluster.Environment "production"}}
skipper_ingress_kubernetes_ingress_v1: "false"
{{else}}
skipper_ingress_kubernetes_ingress_v1: "true"
{{end}}
enable_dedicate_nodepool_skipper: "false"
skipper_suppress_route_update_logs: "true"
{{if eq .Cluster.Environment "e2e"}}
Expand Down
9 changes: 5 additions & 4 deletions cluster/manifests/skipper/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
namespace: kube-system
labels:
application: skipper-ingress
version: v0.13.137
version: v0.13.150
component: ingress
spec:
strategy:
Expand All @@ -19,7 +19,7 @@ spec:
metadata:
labels:
application: skipper-ingress
version: v0.13.137
version: v0.13.150
component: ingress
annotations:
kubernetes-log-watcher/scalyr-parser: |
Expand Down Expand Up @@ -48,7 +48,7 @@ spec:
hostNetwork: true
containers:
- name: skipper-ingress
image: registry.opensource.zalan.do/teapot/skipper-internal:v0.13.137-189
image: registry.opensource.zalan.do/teapot/skipper-internal:v0.13.150-202
ports:
- name: ingress-port
containerPort: 9999
Expand Down Expand Up @@ -96,6 +96,7 @@ spec:
- "-kubernetes"
- "-kubernetes-in-cluster"
- "-kubernetes-path-mode=path-prefix"
- "-kubernetes-ingress-v1={{ .Cluster.ConfigItems.skipper_ingress_kubernetes_ingress_v1 }}"
{{ end }}
- "-address=:9999"
- "-wait-first-route-load"
Expand Down Expand Up @@ -155,7 +156,7 @@ spec:
tag=application=skipper-ingress
tag=account={{ .Cluster.Alias }}
tag=cluster={{ .Cluster.Alias }}
tag=artifact=registry.opensource.zalan.do/teapot/skipper-internal:v0.13.137-189
tag=artifact=registry.opensource.zalan.do/teapot/skipper-internal:v0.13.150-202
max-buffered-spans={{ .ConfigItems.skipper_ingress_tracing_buffer }}
grpc-max-msg-size={{ .ConfigItems.skipper_ingress_lightstep_grpc_max_msg_size }}
max-period={{ .ConfigItems.skipper_ingress_lightstep_max_period }}
Expand Down

0 comments on commit b036ca2

Please sign in to comment.