Skip to content

Commit ff70e80

Browse files
committed
chore: upgrade version
1 parent f28a9d4 commit ff70e80

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

modules/network/example/dev/example_workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
modules:
22
network:
33
path: oci://ghcr.io/kusionstack/network
4-
version: 0.2.0
4+
version: 0.2.3
55
configs:
66
default:
77
port:

modules/network/example/dev/kcl.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "example"
33

44
[dependencies]
55
kam = { git = "https://github.com/KusionStack/kam.git", tag = "0.2.0" }
6-
service = {oci = "oci://ghcr.io/kusionstack/service", tag = "0.1.0" }
7-
network = { oci = "oci://ghcr.io/kusionstack/network", tag = "0.2.0" }
6+
service = { oci = "oci://ghcr.io/kusionstack/service", tag = "0.2.0" }
7+
network = { oci = "oci://ghcr.io/kusionstack/network", tag = "0.2.3" }
88

99
[profile]
1010
entries = ["main.k"]

modules/network/kcl.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[package]
22
name = "network"
3-
version = "0.2.1-rc.1"
3+
version = "0.2.3"

modules/network/src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ TEST?=$$(go list ./... | grep -v 'vendor')
22
###### chang variables below according to your own modules ###
33
NAMESPACE=kusionstack
44
NAME=network
5-
VERSION=0.2.1-rc.1
5+
VERSION=0.2.3
66
BINARY=../bin/kusion-module-${NAME}_${VERSION}
77

88
LOCAL_ARCH := $(shell uname -m)
@@ -17,7 +17,7 @@ export OS_ARCH ?= $(GOARCH_LOCAL)
1717
default: install
1818

1919
build-darwin:
20-
GOOS=darwin GOARCH=arm64 go build -o ${BINARY} ./${NAME}
20+
GOOS=darwin GOARCH=amd64 go build -o ${BINARY}
2121

2222
install: build-darwin
2323
# copy module binary to $KUSION_HOME. e.g. ~/.kusion/modules/kusionstack/network/v0.1.0/darwin/arm64/kusion-module-network_0.1.0

modules/network/src/network.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ func (network *Network) Generate(ctx context.Context, request *module.GeneratorR
6767
resources = append(resources, *ingressRes)
6868
}
6969

70-
// Generate network ingressClasss related resources.
70+
// Generate network ingressClass related resources.
7171
ingressClassRes, err := network.GenerateIngressClassResource(request)
7272
if err != nil {
7373
return nil, err

0 commit comments

Comments
 (0)