Skip to content

Commit

Permalink
update hwameistor version to v0.12.1
Browse files Browse the repository at this point in the history
Signed-off-by: buffalo1024 <[email protected]>
  • Loading branch information
buffalo1024 authored and buffalo1024 committed Aug 29, 2023
1 parent 7a61e40 commit 8cc59d4
Show file tree
Hide file tree
Showing 44 changed files with 3,084 additions and 30 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ require (
github.com/google/gofuzz v1.1.0 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/hwameistor/hwameistor v0.10.3
github.com/hwameistor/hwameistor v0.12.1
github.com/imdario/mergo v0.3.12 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0m
github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=
github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
github.com/hwameistor/hwameistor v0.10.3 h1:kzT49leBii8483uhgWKO/f/BlNBmHK8ZsdRD6KrDO/s=
github.com/hwameistor/hwameistor v0.10.3/go.mod h1:dSa57fdYByPS6jTWUi5UodwkQhyo3XKP0UzNHLhhmcI=
github.com/hwameistor/hwameistor v0.12.1 h1:Y4K8jPCPpwTw6IqNFeQSBWc6bd/f/Eh9RxkJKu84Cjs=
github.com/hwameistor/hwameistor v0.12.1/go.mod h1:Ht+wwZlbtZilKHabhQWAAxmK8o4SDUgvbULjo+mUbp8=
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA=
Expand Down
18 changes: 9 additions & 9 deletions helm/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ global:
#hwameistorImageRegistry: ghcr.m.daocloud.io
k8sImageRegistry: registry.k8s.io
# k8sImageRegistry: m.daocloud.io/registry.k8s.io
hwameistorVersion: v0.10.3
hwameistorVersion: v0.12.1

operator:
replicas: 1
Expand All @@ -17,7 +17,7 @@ localDiskManager:
kubeletRootDir: /var/lib/kubelet
manager:
imageRepository: hwameistor/local-disk-manager
tag: v0.10.3
tag: v0.12.1
csi:
registrar:
imageRepository: sig-storage/csi-node-driver-registrar
Expand All @@ -37,7 +37,7 @@ localStorage:
kubeletRootDir: /var/lib/kubelet
member:
imageRepository: hwameistor/local-storage
tag: v0.10.3
tag: v0.12.1
csi:
registrar:
imageRepository: sig-storage/csi-node-driver-registrar
Expand Down Expand Up @@ -65,25 +65,25 @@ scheduler:
disable: false
replicas: 1
imageRepository: hwameistor/scheduler
tag: v0.10.3
tag: v0.12.1

admission:
disable: false
replicas: 1
imageRepository: hwameistor/admission
tag: v0.10.3
tag: v0.12.1

evictor:
disable: false
replicas: 1
imageRepository: hwameistor/evictor
tag: v0.10.3
tag: v0.12.1

apiserver:
disable: false
replicas: 1
imageRepository: hwameistor/apiserver
tag: v0.10.3
tag: v0.12.1
authentication:
enable: false
accessId: admin
Expand All @@ -93,13 +93,13 @@ exporter:
disable: false
replicas: 1
imageRepository: hwameistor/exporter
tag: v0.10.3
tag: v0.12.1

ui:
disable: false
replicas: 1
imageRepository: hwameistor/hwameistor-ui
tag: v0.10.0
tag: v0.12.1

ha:
disable: false
Expand Down
2 changes: 1 addition & 1 deletion pkg/install/constants.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package install

const DefaultHwameistorVersion = "v0.10.3"
const DefaultHwameistorVersion = "v0.12.1"
3 changes: 2 additions & 1 deletion pkg/install/ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ var ui = appsv1.Deployment{
Name: uiContainerName,
Ports: []corev1.ContainerPort{
{
ContainerPort: 80,
ContainerPort: 8080,
Protocol: corev1.ProtocolTCP,
Name: "http",
},
},
},
Expand Down
4 changes: 2 additions & 2 deletions pkg/install/ui/ui_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ var uiService = corev1.Service{
Port: 80,
Protocol: corev1.ProtocolTCP,
TargetPort: intstr.IntOrString{
Type: intstr.Int,
IntVal: 80,
Type: intstr.String,
StrVal: "http",
},
},
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8cc59d4

Please sign in to comment.