Skip to content

Commit

Permalink
bump version v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kvaps committed Mar 16, 2021
1 parent e4a31a1 commit a9c228c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ Spawn new cluster:

```bash
helm repo add kvaps https://kvaps.github.io/charts
helm show values kvaps/kubefarm --version 0.9.2 > values.yaml
helm show values kvaps/kubefarm --version 0.10.0 > values.yaml
vim values.yaml
helm install cluster1 kvaps/kubefarm --version 0.9.2 \
helm install cluster1 kvaps/kubefarm --version 0.10.0 \
--namespace kubefarm-cluster1 \
--create-namespace \
-f values.yaml
Expand Down
6 changes: 3 additions & 3 deletions build/ltsp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

FROM ubuntu:20.04 as ltsp

ENV VERSION=v0.9.2
ENV VERSION=v0.10.0
ENV DEBIAN_FRONTEND=noninteractive

# Install updates and LTSP package
Expand Down Expand Up @@ -89,7 +89,7 @@ RUN systemctl disable systemd-resolved.service \
&& systemctl mask systemd-resolved.service

# Install docker
ARG DOCKER_VERSION=19.03
ARG DOCKER_VERSION=20.10
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \
&& echo "deb https://download.docker.com/linux/ubuntu focal stable" \
> /etc/apt/sources.list.d/docker.list \
Expand All @@ -100,7 +100,7 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - \

# Install kubeadm, kubelet and kubectl
# https://kubernetes.io/docs/setup/independent/install-kubeadm/#installing-kubeadm-kubelet-and-kubectl
ARG KUBE_VERSION=1.19
ARG KUBE_VERSION=1.20
RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - \
&& echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" \
> /etc/apt/sources.list.d/kubernetes.list \
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/kubefarm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: kubefarm
description: Kubefarm cluster
version: 0.9.2
version: 0.10.0
appVersion: 1.19.0
icon: https://avatars1.githubusercontent.com/u/68351149?s=150&u=b8b4cb0f364281274159d4098090c0e229370cf0
keywords:
Expand All @@ -14,5 +14,5 @@ maintainers:
email: [email protected]
dependencies:
- name: kubernetes
version: 0.9.2
version: 0.10.0
condition: kubernetes.enabled
2 changes: 1 addition & 1 deletion examples/advanced_network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ or just put `debug_shell` at any place you want to debug.
apply:

```
helm upgrade --install cluster1 kvaps/kubefarm --version 0.9.2 \
helm upgrade --install cluster1 kvaps/kubefarm --version 0.10.0 \
--namespace kubefarm-cluster1 \
--create-namespace \
-f ../generic/values.yaml \
Expand Down
2 changes: 1 addition & 1 deletion examples/catchall/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It might be used to catch all unknown clients in the network.
apply:

```
helm install catchall kvaps/kubefarm --version 0.9.2 \
helm install catchall kvaps/kubefarm --version 0.10.0 \
--namespace kubefarm-catchall \
--create-namespace \
-f values.yaml
Expand Down
2 changes: 1 addition & 1 deletion examples/dualstack_network/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sysctl -w net.ipv6.conf.all.forwarding=1
deploy kubernetes cluster without kube-proxy:

```bash
helm upgrade --install cluster1 kvaps/kubefarm --version 0.9.2 \
helm upgrade --install cluster1 kvaps/kubefarm --version 0.10.0 \
--namespace kubefarm-cluster1 \
--create-namespace \
-f ../generic/values.yaml \
Expand Down
2 changes: 1 addition & 1 deletion examples/generic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This setup illustrates the deployment of typical cluster with the static clients
apply:

```
helm upgrade --install cluster1 kvaps/kubefarm --version 0.9.2 \
helm upgrade --install cluster1 kvaps/kubefarm --version 0.10.0 \
--namespace kubefarm-cluster1 \
--create-namespace \
-f values.yaml
Expand Down

0 comments on commit a9c228c

Please sign in to comment.