Skip to content

Commit 96451ce

Browse files
authored
Merge pull request #166 from gianlucam76/prep
Prepare for release v0.7.1
2 parents d72e999 + f98b954 commit 96451ce

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

.golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ linters-settings:
5454
gocyclo:
5555
min-complexity: 20
5656
goimports:
57-
local-prefixes: golang.cisco.com/cloudstack
57+
local-prefixes: github.com/projectsveltos
5858
gomnd:
5959
settings:
6060
mnd:

Makefile

Lines changed: 1 addition & 1 deletion
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 ?= main
28+
TAG ?= v0.7.1
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)

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: projectsveltos/sveltos-manager-amd64:main
11+
- image: projectsveltos/sveltos-manager-amd64:v0.7.1
1212
name: manager

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require (
1212
github.com/onsi/ginkgo/v2 v2.6.0
1313
github.com/onsi/gomega v1.24.1
1414
github.com/pkg/errors v0.9.1
15-
github.com/projectsveltos/libsveltos v0.7.1-0.20230314175637-cecbf1f2a756
15+
github.com/projectsveltos/libsveltos v0.7.1
1616
github.com/prometheus/client_golang v1.13.0
1717
github.com/spf13/pflag v1.0.5
1818
golang.org/x/text v0.7.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@ github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndr
790790
github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s=
791791
github.com/poy/onpar v0.0.0-20190519213022-ee068f8ea4d1 h1:oL4IBbcqwhhNWh31bjOX8C/OCy0zs9906d/VUru+bqg=
792792
github.com/poy/onpar v0.0.0-20190519213022-ee068f8ea4d1/go.mod h1:nSbFQvMj97ZyhFRSJYtut+msi4sOY6zJDGCdSc+/rZU=
793-
github.com/projectsveltos/libsveltos v0.7.1-0.20230314175637-cecbf1f2a756 h1:ejOkhS20o5EZ1j+PmzU2dvATbgKayTp2MUaTffBZ8sg=
794-
github.com/projectsveltos/libsveltos v0.7.1-0.20230314175637-cecbf1f2a756/go.mod h1:K2IJCkj2dz6qgZyv0F7tkZkzJ+7il1qjDyIBaBS2NpQ=
793+
github.com/projectsveltos/libsveltos v0.7.1 h1:h3or+AAEgP0ywW9a+c4n1bR5RNVWKAzAFw+qbf21LZw=
794+
github.com/projectsveltos/libsveltos v0.7.1/go.mod h1:K2IJCkj2dz6qgZyv0F7tkZkzJ+7il1qjDyIBaBS2NpQ=
795795
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
796796
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
797797
github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g=

manifest/manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ spec:
14871487
- --v=5
14881488
command:
14891489
- /manager
1490-
image: projectsveltos/sveltos-manager-amd64:main
1490+
image: projectsveltos/sveltos-manager-amd64:v0.7.1
14911491
livenessProbe:
14921492
httpGet:
14931493
path: /healthz

pkg/drift-detection/drift-detection-manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ spec:
260260
- --run-mode=do-not-send-updates
261261
command:
262262
- /manager
263-
image: projectsveltos/drift-detection-manager-amd64:main
263+
image: projectsveltos/drift-detection-manager-amd64:v0.7.1
264264
livenessProbe:
265265
httpGet:
266266
path: /healthz

pkg/drift-detection/drift-detection-manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ spec:
242242
- --run-mode=do-not-send-updates
243243
command:
244244
- /manager
245-
image: projectsveltos/drift-detection-manager-amd64:main
245+
image: projectsveltos/drift-detection-manager-amd64:v0.7.1
246246
livenessProbe:
247247
httpGet:
248248
path: /healthz

0 commit comments

Comments
 (0)