diff --git a/Makefile b/Makefile index 711d989..55de920 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,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 ?= main +TAG ?= dev ## Tool Binaries CONTROLLER_GEN := $(TOOLS_BIN_DIR)/controller-gen diff --git a/config/default/manager_image_patch.yaml b/config/default/manager_image_patch.yaml index 801893d..08c5929 100644 --- a/config/default/manager_image_patch.yaml +++ b/config/default/manager_image_patch.yaml @@ -8,5 +8,5 @@ spec: spec: containers: # Change the value of image field below to your controller image URL - - image: projectsveltos/drift-detection-manager:main + - image: projectsveltos/drift-detection-manager:dev name: manager diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index d347c0e..d3a0adb 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -72,7 +72,7 @@ spec: resources: limits: cpu: 500m - memory: 256Mi + memory: 512Mi requests: cpu: 10m memory: 128Mi diff --git a/go.mod b/go.mod index c994898..f8f82e3 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/onsi/ginkgo/v2 v2.17.3 github.com/onsi/gomega v1.33.1 github.com/pkg/errors v0.9.1 - github.com/projectsveltos/libsveltos v0.30.1-0.20240517095820-fd9879699f8d + github.com/projectsveltos/libsveltos v0.30.0 github.com/spf13/pflag v1.0.5 k8s.io/api v0.30.0 k8s.io/apiextensions-apiserver v0.30.0 diff --git a/go.sum b/go.sum index 2df65c1..7e3e2bc 100644 --- a/go.sum +++ b/go.sum @@ -130,8 +130,8 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/projectsveltos/libsveltos v0.30.1-0.20240517095820-fd9879699f8d h1:d1G4ply9nNevRGD3NEhdaL6/5EzaDmA6gvevOUcvBDU= -github.com/projectsveltos/libsveltos v0.30.1-0.20240517095820-fd9879699f8d/go.mod h1:oy1tEoNFG6iWp1BizxEY2HOt5ytpXaaWivzz4EFElvY= +github.com/projectsveltos/libsveltos v0.30.0 h1:kpKzVMAgoCSrw9S8VAo5kogDxgkRBLWKnLnsGNOa8I8= +github.com/projectsveltos/libsveltos v0.30.0/go.mod h1:oy1tEoNFG6iWp1BizxEY2HOt5ytpXaaWivzz4EFElvY= github.com/prometheus/client_golang v1.18.0 h1:HzFfmkOzH5Q8L8G+kSJKUx5dtG87sewO+FoDDqP5Tbk= github.com/prometheus/client_golang v1.18.0/go.mod h1:T+GXkCk5wSJyOqMIzVgvvjFDlkOQntgjkJWKrN5txjA= github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= diff --git a/manifest/manifest.yaml b/manifest/manifest.yaml index 3f46e6e..bb50616 100644 --- a/manifest/manifest.yaml +++ b/manifest/manifest.yaml @@ -112,7 +112,7 @@ spec: - --run-mode=do-not-send-updates command: - /manager - image: projectsveltos/drift-detection-manager:main + image: projectsveltos/drift-detection-manager:dev livenessProbe: failureThreshold: 3 httpGet: @@ -140,7 +140,7 @@ spec: resources: limits: cpu: 500m - memory: 256Mi + memory: 512Mi requests: cpu: 10m memory: 128Mi diff --git a/manifest/mgmt_cluster_manifest.yaml b/manifest/mgmt_cluster_manifest.yaml index 8903ca6..62724c9 100644 --- a/manifest/mgmt_cluster_manifest.yaml +++ b/manifest/mgmt_cluster_manifest.yaml @@ -28,7 +28,7 @@ spec: - --run-mode=do-not-send-updates command: - /manager - image: projectsveltos/drift-detection-manager:main + image: projectsveltos/drift-detection-manager:dev livenessProbe: failureThreshold: 3 httpGet: @@ -56,7 +56,7 @@ spec: resources: limits: cpu: 500m - memory: 256Mi + memory: 512Mi requests: cpu: 10m memory: 128Mi