From 4f722561c05e9be9c6301ae1a828f9a77365b94c Mon Sep 17 00:00:00 2001 From: david Date: Mon, 24 Aug 2020 23:55:00 +0800 Subject: [PATCH] version v0.1.0-alpha.4 --- 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 e90ddf8c1..7b7029295 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/master/deploy/imgconv/install.sh | bash +curl -s https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/deploy/imgconv/install.sh | bash ``` \ No newline at end of file diff --git a/doc/kalm-operator.md b/doc/kalm-operator.md index 7be968242..a09c7ded3 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/master/operator/kalm-install.yaml +kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/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 f3c2405a5..5801a8769 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.3 + kalmVersion: v0.1.0-alpha.4 diff --git a/kalm-install-operator.yaml b/kalm-install-operator.yaml index e8d5025ac..7778e6fc9 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.3 + image: kalmhq/kalm-operator:v0.1.0-alpha.4 imagePullPolicy: Always name: manager resources: diff --git a/scripts/install.sh b/scripts/install.sh index 7674572e6..c154128bc 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/master/kalm-install-operator.yaml +kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/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/master/kalm-install-kalmoperatorconfig.yaml + kubectl apply -f https://raw.githubusercontent.com/kalmhq/kalm/v0.1.0-alpha.4/kalm-install-kalmoperatorconfig.yaml OPERATOR_CONFIG_APPLY_STATUS=$? done