Skip to content

Commit

Permalink
Merge pull request #84 from gianlucam76/release-0.2
Browse files Browse the repository at this point in the history
Prepare for release v0.2.0
  • Loading branch information
gianlucam76 committed Nov 15, 2022
2 parents c644265 + ad04cb5 commit ad250e3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARCH ?= amd64
OS ?= $(shell uname -s | tr A-Z a-z)
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
TAG ?= dev
TAG ?= v0.2.0

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

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

# Install projectsveltos controller-manager components
@echo 'Install projectsveltos controller-manager components'
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Sveltos

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

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

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

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

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

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

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

# Understanding how to configure and use Sveltos
Expand Down
2 changes: 1 addition & 1 deletion config/default/manager_image_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ spec:
spec:
containers:
# Change the value of image field below to your controller image URL
- image: gianlucam76/sveltos-manager-amd64:dev
- image: gianlucam76/sveltos-manager-amd64:v0.2.0
name: manager
2 changes: 1 addition & 1 deletion manifest/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1306,7 +1306,7 @@ spec:
- --v=5
command:
- /manager
image: gianlucam76/sveltos-manager-amd64:dev
image: gianlucam76/sveltos-manager-amd64:v0.2.0
livenessProbe:
httpGet:
path: /healthz
Expand Down

0 comments on commit ad250e3

Please sign in to comment.