Skip to content

Commit

Permalink
Merge pull request #9512 from hakman/kube-router-v1.0.0
Browse files Browse the repository at this point in the history
Update kube-router to v1.0.0
  • Loading branch information
k8s-ci-robot committed Jul 7, 2020
2 parents b532a60 + 9107490 commit b13209d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
13 changes: 10 additions & 3 deletions upup/models/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pulled and modified from https://github.com/cloudnativelabs/kube-router/blob/v0.4.0/daemonset/kubeadm-kuberouter.yaml
# Pulled and modified from https://raw.githubusercontent.com/cloudnativelabs/kube-router/v1.0.0/daemonset/kubeadm-kuberouter.yaml

apiVersion: v1
kind: ConfigMap
Expand Down Expand Up @@ -49,7 +49,7 @@ spec:
serviceAccountName: kube-router
containers:
- name: kube-router
image: docker.io/cloudnativelabs/kube-router:v0.4.0
image: docker.io/cloudnativelabs/kube-router:v1.0.0
args:
- --run-router=true
- --run-firewall=true
Expand Down Expand Up @@ -84,9 +84,12 @@ spec:
- name: kubeconfig
mountPath: /var/lib/kube-router/kubeconfig
readOnly: true
- name: xtables-lock
mountPath: /run/xtables.lock
readOnly: false
initContainers:
- name: install-cni
image: busybox
image: docker.io/cloudnativelabs/kube-router:v1.0.0
command:
- /bin/sh
- -c
Expand Down Expand Up @@ -127,6 +130,10 @@ spec:
- name: kubeconfig
hostPath:
path: /var/lib/kube-router/kubeconfig
- name: xtables-lock
hostPath:
path: /run/xtables.lock
type: FileOrCreate
---
apiVersion: v1
kind: ServiceAccount
Expand Down
2 changes: 1 addition & 1 deletion upup/pkg/fi/cloudup/bootstrapchannelbuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons {
key := "networking.kuberouter"
versions := map[string]string{
"k8s-1.6": "0.3.1-kops.3",
"k8s-1.12": "0.4.0-kops.3",
"k8s-1.12": "1.0.0-kops.1",
}

{
Expand Down

0 comments on commit b13209d

Please sign in to comment.