From b1f54dec919373381b935d392f02c5a2951ff2f0 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 17 Dec 2024 13:32:08 -0500 Subject: [PATCH] git mod tidy changes --- csm-common.mk | 23 +++++++++++++++++++++++ go.mod | 5 ++++- service/driver-config-params.yaml | 3 +++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 csm-common.mk create mode 100644 service/driver-config-params.yaml diff --git a/csm-common.mk b/csm-common.mk new file mode 100644 index 00000000..74a12d9c --- /dev/null +++ b/csm-common.mk @@ -0,0 +1,23 @@ +# Copyright © 2024 Dell Inc. or its subsidiaries. All Rights Reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http:#www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Common settings for all CSM components amd images. +# Update this file with the image versions change, and it will be automaticall rolled out across all components. + +# --- DEFAULT_BASEIMAGE: Specifies the UBI-micro image that is used as the base for the CSM images +DEFAULT_BASEIMAGE="registry.access.redhat.com/ubi9/ubi-micro@sha256:7f376b75faf8ea546f28f8529c37d24adcde33dca4103f4897ae19a43d58192b" + +# --- DEFAULT_GOVERSION: Specifies the default version of go +DEFAULT_GOVERSION="1.23" + +# --- DEFAULT_GOIMAGE: Specifies the default Image to be used for building go components in a multi-stage docker file +DEFAULT_GOIMAGE="golang:${DEFAULT_GOVERSION}" diff --git a/go.mod b/go.mod index 64cb5e74..ea8bd8df 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,10 @@ module github.com/dell/csi-vxflexos/v2 // In order to run unit tests on Windows, you need a stubbed Windows implementation // of the gofsutil package. Use the following replace statements if necessary. -go 1.23 +go 1.23.0 + +toolchain go1.23.3 + require ( github.com/akutz/memconn v0.1.0 github.com/apparentlymart/go-cidr v1.1.0 diff --git a/service/driver-config-params.yaml b/service/driver-config-params.yaml new file mode 100644 index 00000000..5d10f9a8 --- /dev/null +++ b/service/driver-config-params.yaml @@ -0,0 +1,3 @@ +interfaceNames: + worker1: "eth1" + worker2: "eth2" \ No newline at end of file