Skip to content

Commit 199c29b

Browse files
Merge branch 'master' into upgrade-nats-image-v2.10
Signed-off-by: Dharmendra solanki <[email protected]>
2 parents c3a1196 + aff6459 commit 199c29b

File tree

5 files changed

+7
-39
lines changed

5 files changed

+7
-39
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ VERSION ?= 0.0.1
88
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
99
BIN_DIR := $(PROJECT_DIR)/bin
1010

11-
ENVTEST_K8S_VERSION = 1.24.2
11+
ENVTEST_K8S_VERSION = 1.30.0
1212
# CHANNELS define the bundle channels used in the bundle.
1313
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
1414
# To re-generate a bundle for other specific channels without changing the standard setup, you can:

UPGRADE_NOTES.md

Lines changed: 0 additions & 35 deletions
This file was deleted.

controllers/suit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var _ = BeforeSuite(func(ctx SpecContext) {
6767
ControlPlaneStartTimeout: timeout,
6868
ControlPlaneStopTimeout: timeout,
6969
AttachControlPlaneOutput: false,
70-
BinaryAssetsDirectory: filepath.Join("..", "bin", "k8s", "1.24.2-linux-amd64"),
70+
BinaryAssetsDirectory: filepath.Join("..", "bin", "k8s", "1.30.0-linux-amd64"),
7171
}
7272

7373
var cfg *rest.Config

main.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import (
2828
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
2929
ctrl "sigs.k8s.io/controller-runtime"
3030
"sigs.k8s.io/controller-runtime/pkg/log/zap"
31+
"sigs.k8s.io/controller-runtime/pkg/metrics/server"
3132
"sigs.k8s.io/controller-runtime/pkg/webhook"
3233

3334
mesheryv1alpha1 "github.com/meshery/meshery-operator/api/v1alpha1"
@@ -62,7 +63,9 @@ func main() {
6263
opID := uuid.NewUUID()
6364
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), ctrl.Options{
6465
Scheme: scheme,
65-
MetricsBindAddress: metricsAddr,
66+
Metrics: server.Options{
67+
BindAddress: metricsAddr,
68+
},
6669
WebhookServer: webhook.NewServer(webhook.Options{
6770
Port: 9443,
6871
}),

pkg/broker/suit_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var _ = BeforeSuite(func(ctx SpecContext) {
6363
ControlPlaneStartTimeout: timeout,
6464
ControlPlaneStopTimeout: timeout,
6565
AttachControlPlaneOutput: false,
66-
BinaryAssetsDirectory: filepath.Join("..", "..", "bin", "k8s", "1.24.2-linux-amd64"),
66+
BinaryAssetsDirectory: filepath.Join("..", "..", "bin", "k8s", "1.30.0-linux-amd64"),
6767
}
6868

6969
var cfg *rest.Config

0 commit comments

Comments
 (0)