Skip to content

Commit

Permalink
version v0.1.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
davidqhr committed Aug 24, 2020
1 parent 80a1686 commit 4f72256
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion deploy/imgconv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion doc/kalm-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion kalm-install-kalmoperatorconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ metadata:
namespace: kalm-operator
name: kalmoperatorconfig-sample
spec:
kalmVersion: v0.1.0-alpha.3
kalmVersion: v0.1.0-alpha.4
2 changes: 1 addition & 1 deletion kalm-install-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 4f72256

Please sign in to comment.