Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ARCH ?= $(shell go env GOARCH)
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 ?= v1.2.0-beta.0
TAG ?= v1.2.0

## Tool Binaries
CONTROLLER_GEN := $(TOOLS_BIN_DIR)/controller-gen
Expand All @@ -61,7 +61,7 @@ CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
GOLANGCI_LINT_VERSION := "v2.5.0"
CLUSTERCTL_VERSION := "v1.11.2"

KUSTOMIZE_VER := v5.3.0
KUSTOMIZE_VER := v5.7.0
KUSTOMIZE_BIN := kustomize
KUSTOMIZE := $(abspath $(TOOLS_BIN_DIR)/$(KUSTOMIZE_BIN)-$(KUSTOMIZE_VER))
KUSTOMIZE_PKG := sigs.k8s.io/kustomize/kustomize/v5
Expand Down
2 changes: 1 addition & 1 deletion config/default/manager_auth_proxy_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ spec:
- "--shard-key="
- --capi-onboard-annotation=
- "--v=5"
- "--version=v1.2.0-beta.0"
- "--version=v1.2.0"
- "--registry="
- "--agent-in-mgmt-cluster=false"
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: docker.io/projectsveltos/classifier:v1.2.0-beta.0
- image: docker.io/projectsveltos/classifier:v1.2.0
name: manager
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/onsi/ginkgo/v2 v2.26.0
github.com/onsi/gomega v1.38.2
github.com/pkg/errors v0.9.1
github.com/projectsveltos/libsveltos v1.2.0-beta.0
github.com/projectsveltos/libsveltos v1.2.0
github.com/prometheus/client_golang v1.23.2
github.com/spf13/pflag v1.0.10
golang.org/x/text v0.30.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=
github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U=
github.com/projectsveltos/libsveltos v1.2.0-beta.0 h1:qqANKPEi8XUMfOnUMyHkY0Y3YXE9O4hjLrjU5GciOyI=
github.com/projectsveltos/libsveltos v1.2.0-beta.0/go.mod h1:n3s5Q0dSBANh26diRW3gcUafPD3iaFP3MRcD656Eo+U=
github.com/projectsveltos/libsveltos v1.2.0 h1:4EhpT+y11tbgKk4RPd88q9uHVKAB4hnuWtXTYI+72uM=
github.com/projectsveltos/libsveltos v1.2.0/go.mod h1:n3s5Q0dSBANh26diRW3gcUafPD3iaFP3MRcD656Eo+U=
github.com/prometheus/client_golang v1.23.2 h1:Je96obch5RDVy3FDMndoUsjAhG5Edi49h0RJWRi/o0o=
github.com/prometheus/client_golang v1.23.2/go.mod h1:Tb1a6LWHB3/SPIzCoaDXI4I8UHKeFTEQ1YCr+0Gyqmg=
github.com/prometheus/client_model v0.6.2 h1:oBsgwpGs7iVziMvrGhE53c/GrLUsZdHnqNwqPLxwZyk=
Expand Down
4 changes: 2 additions & 2 deletions manifest/deployment-agentless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ spec:
- --shard-key=
- --capi-onboard-annotation=
- --v=5
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --registry=
- --agent-in-mgmt-cluster=true
command:
- /manager
image: docker.io/projectsveltos/classifier:v1.2.0-beta.0
image: docker.io/projectsveltos/classifier:v1.2.0
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions manifest/deployment-shard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ spec:
- --shard-key={{.SHARD}}
- --capi-onboard-annotation=
- --v=5
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --registry=
- --agent-in-mgmt-cluster=false
command:
- /manager
image: docker.io/projectsveltos/classifier:v1.2.0-beta.0
image: docker.io/projectsveltos/classifier:v1.2.0
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions manifest/manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,12 +170,12 @@ spec:
- --shard-key=
- --capi-onboard-annotation=
- --v=5
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --registry=
- --agent-in-mgmt-cluster=false
command:
- /manager
image: docker.io/projectsveltos/classifier:v1.2.0-beta.0
image: docker.io/projectsveltos/classifier:v1.2.0
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-agent-in-mgmt-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ spec:
- --cluster-namespace=
- --cluster-name=
- --cluster-type=
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --current-cluster=management-cluster
- --run-mode=do-not-send-reports
command:
- /manager
image: docker.io/projectsveltos/sveltos-agent@sha256:ffdfec6cc390c227de4056fef5644436618c68c9c708abbcb55d6c6561aba96b
image: docker.io/projectsveltos/sveltos-agent@sha256:3a032cdc275e06827140968f64ae3fa41f603185c969a901b93cfb5203a66933
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-agent-in-mgmt-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ spec:
- --cluster-namespace=
- --cluster-name=
- --cluster-type=
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --current-cluster=management-cluster
- --run-mode=do-not-send-reports
command:
- /manager
image: docker.io/projectsveltos/sveltos-agent@sha256:ffdfec6cc390c227de4056fef5644436618c68c9c708abbcb55d6c6561aba96b
image: docker.io/projectsveltos/sveltos-agent@sha256:3a032cdc275e06827140968f64ae3fa41f603185c969a901b93cfb5203a66933
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,12 @@ spec:
- --cluster-namespace=
- --cluster-name=
- --cluster-type=
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --current-cluster=managed-cluster
- --run-mode=do-not-send-reports
command:
- /manager
image: docker.io/projectsveltos/sveltos-agent@sha256:ffdfec6cc390c227de4056fef5644436618c68c9c708abbcb55d6c6561aba96b
image: docker.io/projectsveltos/sveltos-agent@sha256:3a032cdc275e06827140968f64ae3fa41f603185c969a901b93cfb5203a66933
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-agent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ spec:
- --cluster-namespace=
- --cluster-name=
- --cluster-type=
- --version=v1.2.0-beta.0
- --version=v1.2.0
- --current-cluster=managed-cluster
- --run-mode=do-not-send-reports
command:
- /manager
image: docker.io/projectsveltos/sveltos-agent@sha256:ffdfec6cc390c227de4056fef5644436618c68c9c708abbcb55d6c6561aba96b
image: docker.io/projectsveltos/sveltos-agent@sha256:3a032cdc275e06827140968f64ae3fa41f603185c969a901b93cfb5203a66933
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-applier.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
- --cluster-type=
- --secret-with-kubeconfig=
- --v=5
- --version=v1.2.0-beta.0
- --version=v1.2.0
command:
- /manager
env:
Expand All @@ -117,7 +117,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: docker.io/projectsveltos/sveltos-applier@sha256:1b2060dbcf31106d386de812c80684de2d30dab89ec56de88db3e0915f33520e
image: docker.io/projectsveltos/sveltos-applier@sha256:e42404bcb3db4b0f472fe21f7dd19f3206f9f31481b0dddbfb28825e70af8861
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
4 changes: 2 additions & 2 deletions pkg/agent/sveltos-applier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ spec:
- --cluster-type=
- --secret-with-kubeconfig=
- --v=5
- --version=v1.2.0-beta.0
- --version=v1.2.0
command:
- /manager
env:
Expand All @@ -99,7 +99,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: docker.io/projectsveltos/sveltos-applier@sha256:1b2060dbcf31106d386de812c80684de2d30dab89ec56de88db3e0915f33520e
image: docker.io/projectsveltos/sveltos-applier@sha256:e42404bcb3db4b0f472fe21f7dd19f3206f9f31481b0dddbfb28825e70af8861
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion test/pullmode-sveltosapplier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: docker.io/projectsveltos/sveltos-applier@sha256:1b2060dbcf31106d386de812c80684de2d30dab89ec56de88db3e0915f33520e
image: docker.io/projectsveltos/sveltos-applier@sha256:e42404bcb3db4b0f472fe21f7dd19f3206f9f31481b0dddbfb28825e70af8861
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down