Skip to content

Commit 2c1e3cf

Browse files
committed
fix
1 parent c6b079b commit 2c1e3cf

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

StorageClass/overlays/dev/kustomization.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ patches:
1010
- patch: |-
1111
- op: replace
1212
path: /parameters/server
13-
value: 10.211.55.16
13+
value: 192.168.46.255
1414
- op: replace
1515
path: /parameters/share
1616
value: /nfs
@@ -21,13 +21,13 @@ patches:
2121
- patch: |-
2222
- op: replace
2323
path: /spec/csi/volumeAttributes/server
24-
value: 10.211.55.16
24+
value: 192.168.46.255
2525
- op: replace
2626
path: /spec/csi/volumeAttributes/share
2727
value: /nfs
2828
- op: replace
2929
path: /spec/csi/volumeHandle
30-
value: 10.211.55.16#nfs#bioos-storage#
30+
value: 192.168.46.255#nfs#bioos-storage#
3131
- op: replace
3232
path: /spec/capacity/storage
3333
value: 50Gi

charts/bioos/templates/deploy-apiserver.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
- name: MYSQL_HOST
3838
value: {{ .Values.mysql.hostname }}
3939
- name: MYSQL_USERNAME
40-
value: {{ .Values.mysql.password }}
40+
value: {{ .Values.mysql.username }}
4141
- name: MYSQL_PORT
4242
value: "3306"
4343
- name: MYSQL_DB

charts/bioos/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
image:
22
repository: docker.io
33
project: bioos
4-
web_name: web:v1.2
5-
apiserver_name: apiserver:v1.2
4+
web_name: web:v1.5
5+
apiserver_name: apiserver:v1.5
66
pullPolicy: IfNotPresent
77

88
imagePullSecrets: []
@@ -79,7 +79,7 @@ mysql:
7979
hostname: mysql
8080
database: bioos
8181
username: root
82-
password: admin
82+
password: test
8383

8484
storage:
8585
pvc: bioos-storage-pvc
@@ -90,4 +90,4 @@ wes:
9090

9191
jupyterhub:
9292
endpoint: http://180.184.43.61/jupyterhub
93-
adminToken: 6026738d798c495aa01c7831048539d9
93+
adminToken: c876b254956a433aaf02836605565af6

csi_values.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
image:
2+
nfs:
3+
repository: dyrnq/nfsplugin
4+
tag: v4.2.0
5+
pullPolicy: IfNotPresent
6+
csiProvisioner:
7+
repository: dyrnq/csi-provisioner
8+
tag: v3.3.0
9+
pullPolicy: IfNotPresent
10+
livenessProbe:
11+
repository: dyrnq/livenessprobe
12+
tag: v2.8.0
13+
pullPolicy: IfNotPresent
14+
nodeDriverRegistrar:
15+
repository: dyrnq/csi-node-driver-registrar
16+
tag: v2.6.2
17+
pullPolicy: IfNotPresent

0 commit comments

Comments
 (0)