Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
Update to kubernetes 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hanikesn committed Mar 28, 2018
1 parent 4b1e09e commit aa39397
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: default

VERSION=1.9.0
VERSION=1.10.0

default: stripped.box box.meta

Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Vagrant.configure(2) do |config|
config.vm.box = "debian/contrib-stretch64"
config.vm.box_version = "=9.3.0"
config.vm.box_version = "=9.4.0"
# Disabled VirtualBox Guest updates
if Vagrant.has_plugin?("vagrant-vbguest")
config.vbguest.auto_update = false
Expand Down
10 changes: 5 additions & 5 deletions vg-00-kubernetes.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env bash
set -euv -o pipefail

ETCD_VERSION=3.2.12
KUBERNETES_VERSION=1.9.0
DOCKER_VERSION=17.09.1
ETCD_VERSION=3.3.2
KUBERNETES_VERSION=1.10.0
DOCKER_VERSION=18.03.0

KUBERNETES_SERVER_SHA256=a8d7be19e3b662681dc50dc0085ca12045979530a27d0200cf986ada3eff4d32
KUBERNETES_SERVER_SHA256=f2e0505bee7d9217332b96be11d1b88c06f51049f7a44666b0ede80bfb92fdf6

NET_CIRD=10.10.0.0/24
DOCKER_CIRD=10.10.0.128/25
Expand Down Expand Up @@ -95,7 +95,7 @@ cp /vagrant/conf/kube-controller-manager.service \
/vagrant/conf/kube-etcd.service \
/etc/systemd/system/
systemctl enable kubelet kube-apiserver kube-controller-manager kube-scheduler kube-proxy kube-etcd
systemctl start kubelet kube-apiserver kube-controller-manager kube-scheduler kube-proxy kube-etcd
systemctl start kube-apiserver kube-controller-manager kube-scheduler kube-proxy kube-etcd

mkdir -p /etc/kubernetes/manifests
sed -e "s%\${BRIDGE_IP}%${BRIDGE_IP}%g" /vagrant/conf/kube-master.yml > /etc/kubernetes/manifests/kube-master.yml
Expand Down

0 comments on commit aa39397

Please sign in to comment.