From 7c87ca3e71f860ba09fc2ec45df6768498414e26 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 26 Aug 2020 23:57:32 +0800 Subject: [PATCH] tag version v0.1.0-alpha.5 --- deploy/imgconv/README.md | 2 +- doc/kalm-operator.md | 2 +- kalm-install-kalmoperatorconfig.yaml | 2 +- kalm-install-operator.yaml | 2 +- scripts/install.sh | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/imgconv/README.md b/deploy/imgconv/README.md index 7b7029295..bfb3526e5 100644 --- a/deploy/imgconv/README.md +++ b/deploy/imgconv/README.md @@ -7,5 +7,5 @@ This installation script is mainly to ensure that all images can be downloaded c Before running the script, please make sure that kubectl and openssl have been installed ```bash -curl -s https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/deploy/imgconv/install.sh | bash +curl -s https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.5/deploy/imgconv/install.sh | bash ``` \ No newline at end of file diff --git a/doc/kalm-operator.md b/doc/kalm-operator.md index a09c7ded3..b146511b4 100644 --- a/doc/kalm-operator.md +++ b/doc/kalm-operator.md @@ -11,7 +11,7 @@ This is our ideal way to install kalm for a cluster. The prerequirements are a r There will be a generated single file yaml. The only thing you need to do is apply it into your cluster. ```bash -kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/operator/kalm-install.yaml +kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.5/operator/kalm-install.yaml ``` This command runs the operator by creating the following resources in the cluster. diff --git a/kalm-install-kalmoperatorconfig.yaml b/kalm-install-kalmoperatorconfig.yaml index 5801a8769..9205298e9 100644 --- a/kalm-install-kalmoperatorconfig.yaml +++ b/kalm-install-kalmoperatorconfig.yaml @@ -23,4 +23,4 @@ metadata: namespace: kalm-operator name: kalmoperatorconfig-sample spec: - kalmVersion: v0.1.0-alpha.4 + kalmVersion: v0.1.0-alpha.5 diff --git a/kalm-install-operator.yaml b/kalm-install-operator.yaml index 7778e6fc9..606b0b3f2 100644 --- a/kalm-install-operator.yaml +++ b/kalm-install-operator.yaml @@ -392,7 +392,7 @@ spec: - --enable-leader-election command: - /manager - image: kalmhq/kalm-operator:v0.1.0-alpha.4 + image: kalmhq/kalm-operator:v0.1.0-alpha.5 imagePullPolicy: Always name: manager resources: diff --git a/scripts/install.sh b/scripts/install.sh index c154128bc..621f72c2a 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -3,7 +3,7 @@ echo "Installing Kalm" echo "" -kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/kalm-install-operator.yaml +kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.5/kalm-install-operator.yaml ## same as running this in code repo: #kubectl apply -f kalm-install-operator.yaml @@ -25,7 +25,7 @@ while [ "$OPERATOR_CONFIG_APPLY_STATUS" -ne 0 ] do ## same as running this in code repo: #kubectl apply -f kalm-install-kalmoperatorconfig.yaml - kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/kalm-install-kalmoperatorconfig.yaml + kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.5/kalm-install-kalmoperatorconfig.yaml OPERATOR_CONFIG_APPLY_STATUS=$? done