mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 18:00:08 +00:00
Preparing for 1.11 release and update ingress image to 0.16.1
This commit is contained in:
parent
ee2e11a0d4
commit
7d96095e68
@ -1,6 +1,6 @@
|
|||||||
options:
|
options:
|
||||||
channel:
|
channel:
|
||||||
type: string
|
type: string
|
||||||
default: "1.10/stable"
|
default: "1.11/stable"
|
||||||
description: |
|
description: |
|
||||||
Snap channel to install Kubernetes snaps from
|
Snap channel to install Kubernetes snaps from
|
||||||
|
@ -85,7 +85,7 @@ options:
|
|||||||
will not be loaded.
|
will not be loaded.
|
||||||
channel:
|
channel:
|
||||||
type: string
|
type: string
|
||||||
default: "1.10/stable"
|
default: "1.11/stable"
|
||||||
description: |
|
description: |
|
||||||
Snap channel to install Kubernetes master services from
|
Snap channel to install Kubernetes master services from
|
||||||
client_password:
|
client_password:
|
||||||
|
@ -23,7 +23,7 @@ options:
|
|||||||
policies (PSP) should be used to restrict container privileges.
|
policies (PSP) should be used to restrict container privileges.
|
||||||
channel:
|
channel:
|
||||||
type: string
|
type: string
|
||||||
default: "1.10/stable"
|
default: "1.11/stable"
|
||||||
description: |
|
description: |
|
||||||
Snap channel to install Kubernetes worker services from
|
Snap channel to install Kubernetes worker services from
|
||||||
require-manual-upgrade:
|
require-manual-upgrade:
|
||||||
|
@ -747,10 +747,10 @@ def launch_default_ingress_controller():
|
|||||||
'ingress-ssl-chain-completion')
|
'ingress-ssl-chain-completion')
|
||||||
context['ingress_image'] = config.get('nginx-image')
|
context['ingress_image'] = config.get('nginx-image')
|
||||||
if context['ingress_image'] == "" or context['ingress_image'] == "auto":
|
if context['ingress_image'] == "" or context['ingress_image'] == "auto":
|
||||||
images = {'amd64': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.15.0', # noqa
|
images = {'amd64': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.16.1', # noqa
|
||||||
'arm64': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-arm64:0.15.0', # noqa
|
'arm64': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-arm64:0.16.1', # noqa
|
||||||
's390x': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-s390x:0.15.0', # noqa
|
's390x': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-s390x:0.16.1', # noqa
|
||||||
'ppc64el': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-ppc64le:0.15.0', # noqa
|
'ppc64el': 'quay.io/kubernetes-ingress-controller/nginx-ingress-controller-ppc64le:0.16.1', # noqa
|
||||||
}
|
}
|
||||||
context['ingress_image'] = images.get(context['arch'], images['amd64'])
|
context['ingress_image'] = images.get(context['arch'], images['amd64'])
|
||||||
if get_version('kubelet') < (1, 9):
|
if get_version('kubelet') < (1, 9):
|
||||||
|
Loading…
Reference in New Issue
Block a user