Skip to content

Commit ad250e3

Browse files
authored
Merge pull request #84 from gianlucam76/release-0.2
Prepare for release v0.2.0
2 parents c644265 + ad04cb5 commit ad250e3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARCH ?= amd64
2525
OS ?= $(shell uname -s | tr A-Z a-z)
2626
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
2727
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
28-
TAG ?= dev
28+
TAG ?= v0.2.0
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)
@@ -244,7 +244,7 @@ deploy-projectsveltos: $(KUSTOMIZE)
244244
$(MAKE) load-image
245245

246246
@echo 'Install libsveltos CRDs'
247-
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/dev/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
247+
$(KUBECTL) apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/v0.2.0/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
248248

249249
# Install projectsveltos controller-manager components
250250
@echo 'Install projectsveltos controller-manager components'

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Sveltos
77

8-
<img src="https://raw.githubusercontent.com/projectsveltos/sveltos-manager/dev/logos/logo.png" width="200">
8+
<img src="https://raw.githubusercontent.com/projectsveltos/sveltos-manager/v0.2.0/logos/logo.png" width="200">
99

1010
## What it is
1111
Sveltos provides declarative APIs allowing you to deploy applications across multiple Kubernetes clusters.
@@ -89,11 +89,11 @@ https://cluster-api.sigs.k8s.io/user/quick-start.html#initialize-the-management-
8989
Third, install Sveltos applying following manifest YAMLs
9090

9191
```
92-
kubectl apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/dev/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
92+
kubectl apply -f https://raw.githubusercontent.com/projectsveltos/libsveltos/v0.2.0/config/crd/bases/lib.projectsveltos.io_debuggingconfigurations.yaml
9393
```
9494

9595
```
96-
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/dev/manifest/manifest.yaml
96+
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/v0.2.0/manifest/manifest.yaml
9797
```
9898

9999
## Install Sveltos on your laptop using the make targets
@@ -127,12 +127,12 @@ clusterctl init --infrastructure docker
127127

128128
Fourth, install Sveltos applying this manifest YAML
129129
```
130-
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/dev/manifest/manifest.yaml
130+
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/v0.2.0/manifest/manifest.yaml
131131
```
132132

133133
Finally, if you have prometheus operator installed in your management cluster, you can apply following ServiceMonitor
134134
```
135-
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/dev/manifest/service_monitor.yaml
135+
kubectl create -f https://raw.githubusercontent.com/projectsveltos/sveltos-manager/v0.2.0/manifest/service_monitor.yaml
136136
```
137137

138138
# Understanding how to configure and use Sveltos

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: gianlucam76/sveltos-manager-amd64:dev
11+
- image: gianlucam76/sveltos-manager-amd64:v0.2.0
1212
name: manager

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1306,7 +1306,7 @@ spec:
13061306
- --v=5
13071307
command:
13081308
- /manager
1309-
image: gianlucam76/sveltos-manager-amd64:dev
1309+
image: gianlucam76/sveltos-manager-amd64:v0.2.0
13101310
livenessProbe:
13111311
httpGet:
13121312
path: /healthz

0 commit comments

Comments
 (0)