ingress-nginx: Upgrade to 0.15.0
This commit is contained in:
parent
cf8e9eed69
commit
9f245dd9b2
3 changed files with 19 additions and 13 deletions
28
README.md
28
README.md
|
@ -86,19 +86,23 @@ Supported Linux Distributions
|
||||||
|
|
||||||
Note: Upstart/SysV init based OS types are not supported.
|
Note: Upstart/SysV init based OS types are not supported.
|
||||||
|
|
||||||
Versions of supported components
|
Supported Components
|
||||||
--------------------------------
|
--------------------
|
||||||
|
|
||||||
- [kubernetes](https://github.com/kubernetes/kubernetes/releases) v1.10.4
|
- Core
|
||||||
- [etcd](https://github.com/coreos/etcd/releases) v3.2.18
|
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.10.4
|
||||||
- [flanneld](https://github.com/coreos/flannel/releases) v0.10.0
|
- [etcd](https://github.com/coreos/etcd) v3.2.18
|
||||||
- [calico](https://docs.projectcalico.org/v2.6/releases/) v2.6.8
|
- [docker](https://www.docker.com/) v17.03 (see note)
|
||||||
- [canal](https://github.com/projectcalico/canal) (given calico/flannel versions)
|
- [rkt](https://github.com/rkt/rkt) v1.21.0 (see Note 2)
|
||||||
- [cilium](https://github.com/cilium/cilium) v1.0.0-rc8
|
- Network Plugin
|
||||||
- [contiv](https://github.com/contiv/install/releases) v1.1.7
|
- [calico](https://github.com/projectcalico/calico) v2.6.8
|
||||||
- [weave](http://weave.works/) v2.3.0
|
- [canal](https://github.com/projectcalico/canal) (given calico/flannel versions)
|
||||||
- [docker](https://www.docker.com/) v17.03 (see note)
|
- [cilium](https://github.com/cilium/cilium) v1.0.0-rc8
|
||||||
- [rkt](https://coreos.com/rkt/docs/latest/) v1.21.0 (see Note 2)
|
- [contiv](https://github.com/contiv/install) v1.1.7
|
||||||
|
- [flanneld](https://github.com/coreos/flannel) v0.10.0
|
||||||
|
- [weave](https://github.com/weaveworks/weave) v2.3.0
|
||||||
|
- Application
|
||||||
|
- [ingress-nginx](https://github.com/kubernetes/ingress-nginx) v0.15.0
|
||||||
|
|
||||||
Note: kubernetes doesn't support newer docker versions. Among other things kubelet currently breaks on docker's non-standard version numbering (it no longer uses semantic versioning). To ensure auto-updates don't break your cluster look into e.g. yum versionlock plugin or apt pin).
|
Note: kubernetes doesn't support newer docker versions. Among other things kubelet currently breaks on docker's non-standard version numbering (it no longer uses semantic versioning). To ensure auto-updates don't break your cluster look into e.g. yum versionlock plugin or apt pin).
|
||||||
|
|
||||||
|
|
|
@ -157,7 +157,7 @@ local_volume_provisioner_image_tag: "v2.0.0"
|
||||||
cephfs_provisioner_image_repo: "quay.io/kubespray/cephfs-provisioner"
|
cephfs_provisioner_image_repo: "quay.io/kubespray/cephfs-provisioner"
|
||||||
cephfs_provisioner_image_tag: "a71a49d4"
|
cephfs_provisioner_image_tag: "a71a49d4"
|
||||||
ingress_nginx_controller_image_repo: "quay.io/kubernetes-ingress-controller/nginx-ingress-controller"
|
ingress_nginx_controller_image_repo: "quay.io/kubernetes-ingress-controller/nginx-ingress-controller"
|
||||||
ingress_nginx_controller_image_tag: "0.14.0"
|
ingress_nginx_controller_image_tag: "0.15.0"
|
||||||
ingress_nginx_default_backend_image_repo: "gcr.io/google_containers/defaultbackend"
|
ingress_nginx_default_backend_image_repo: "gcr.io/google_containers/defaultbackend"
|
||||||
ingress_nginx_default_backend_image_tag: "1.4"
|
ingress_nginx_default_backend_image_tag: "1.4"
|
||||||
cert_manager_version: "v0.2.4"
|
cert_manager_version: "v0.2.4"
|
||||||
|
|
|
@ -76,6 +76,8 @@ spec:
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
timeoutSeconds: 1
|
timeoutSeconds: 1
|
||||||
|
securityContext:
|
||||||
|
runAsNonRoot: false
|
||||||
{% if rbac_enabled %}
|
{% if rbac_enabled %}
|
||||||
serviceAccountName: ingress-nginx
|
serviceAccountName: ingress-nginx
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue