Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ks-core helm chart #316

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/test/ks-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.2
version: 0.3.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: "v4.0.0-beta.2"
appVersion: "v4.0.0-beta.3"
54 changes: 27 additions & 27 deletions src/test/ks-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
## @param global.tag Global Docker image tag
global:
imageRegistry: registry.cn-beijing.aliyuncs.com
tag: v4.0.0-beta.2
imagePullSecrets: [ ]
tag: v4.0.0-beta.3
imagePullSecrets: []

## @section Common parameters
##
Expand All @@ -19,10 +19,10 @@ nameOverride: ""
fullnameOverride: ""
## @param commonLabels Labels to add to all deployed objects
##
commonLabels: { }
commonLabels: {}
## @param commonAnnotations Annotations to add to all deployed objects
##
commonAnnotations: { }
commonAnnotations: {}

role: host

Expand Down Expand Up @@ -50,20 +50,20 @@ serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: { }
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: "kubesphere"

podAnnotations: { }
podAnnotations: {}

podSecurityContext: { }
podSecurityContext: {}
# fsGroup: 2000

securityContext: { }
# capabilities:
# drop:
# - ALL
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
Expand All @@ -82,9 +82,9 @@ tolerations:
operator: Exists
tolerationSeconds: 60

affinity: { }
affinity: {}

nodeSelector: { }
nodeSelector: {}

## deployment specific configuration

Expand All @@ -103,7 +103,7 @@ apiserver:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: [ ]
pullSecrets: []
## @param containerPorts [array] List of container ports to enable in the ks-apiserver container
##
containerPorts:
Expand Down Expand Up @@ -133,13 +133,13 @@ apiserver:
## - name: FOO
## value: "bar"
##
extraEnvVars: [ ]
extraEnvVars: []
## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for the haproxy container(s)
##
extraVolumeMounts: [ ]
extraVolumeMounts: []
## @param extraVolumes Optionally specify extra list of additional volumes for the haproxy pod(s)
##
extraVolumes: [ ]
extraVolumes: []

console:
replicaCount: 1
Expand All @@ -156,10 +156,10 @@ console:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: [ ]
pullSecrets: []
## @param containerPorts [array] List of container ports to enable in the ks-apiserver container
##
containerPorts: [ ]
containerPorts: []
nodePort: 30880
defaultClusterName: "default"
## @param resources.limits The resources limits for the haproxy containers
Expand All @@ -174,16 +174,16 @@ console:
memory: 100Mi
## @param command Override default container command (useful when using custom images)
##
command: [ ]
command: []
## @param extraEnvVars Array with extra environment variables to add to haproxy nodes
##
extraEnvVars: [ ]
extraEnvVars: []
## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for the haproxy container(s)
##
extraVolumeMounts: [ ]
extraVolumeMounts: []
## @param extraVolumes Optionally specify extra list of additional volumes for the haproxy pod(s)
##
extraVolumes: [ ]
extraVolumes: []

controller:
replicaCount: 1
Expand All @@ -200,7 +200,7 @@ controller:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: [ ]
pullSecrets: []
## @param containerPorts [array] List of container ports to enable in the ks-apiserver container
##
containerPorts:
Expand All @@ -227,13 +227,13 @@ controller:
- --controllers=*
## @param extraEnvVars Array with extra environment variables to add to haproxy nodes
##
extraEnvVars: [ ]
extraEnvVars: []
## @param extraVolumeMounts Optionally specify extra list of additional volumeMounts for the haproxy container(s)
##
extraVolumeMounts: [ ]
extraVolumeMounts: []
## @param extraVolumes Optionally specify extra list of additional volumes for the haproxy pod(s)
##
extraVolumes: [ ]
extraVolumes: []

agent:
replicaCount: 1
Expand Down
Loading