devel: rename manifests/ to kustomizations/
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
# Default values for geoserver.
|
||||
# This is a YAML-formatted file.
|
||||
# Declare variables to be passed into your templates.
|
||||
|
||||
image:
|
||||
repository: docker.osgeo.org/geoserver
|
||||
pullPolicy: IfNotPresent
|
||||
# Overrides the image tag whose default is the chart appVersion.
|
||||
tag: ""
|
||||
|
||||
auth:
|
||||
username: admin
|
||||
password: geoserver
|
||||
# use an existing secret if specified
|
||||
#existingSecret: geoserver-admin-password
|
||||
#passwordKey: geoserver-admin-password
|
||||
|
||||
cors:
|
||||
enabled: true
|
||||
|
||||
extension:
|
||||
install: false
|
||||
stableExtension: ""
|
||||
|
||||
demoData:
|
||||
skip: true
|
||||
|
||||
startup:
|
||||
failureThreshold: 10
|
||||
periodSeconds: 30
|
||||
|
||||
imagePullSecrets: []
|
||||
|
||||
nameOverride: ""
|
||||
fullnameOverride: ""
|
||||
|
||||
persistence:
|
||||
size: 10Gi
|
||||
accessModes: ReadWriteOnce
|
||||
#existingClaim: someclaim
|
||||
|
||||
# the white list is needed for GUI working properly.
|
||||
# the value for this should be the main URL for where geoserver get deployed.
|
||||
# the values should be only url without http:// or https://, like "geoserver.example.com"
|
||||
whitelist: ""
|
||||
|
||||
# the following is for the geoserver java memory heap size control
|
||||
envs:
|
||||
extraJavaOpts: "-Xms512m -Xmx2g"
|
||||
|
||||
serviceAccount:
|
||||
# Specifies whether a service account should be created
|
||||
create: true
|
||||
# Annotations to add to the service account
|
||||
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: ""
|
||||
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
|
||||
securityContext: {}
|
||||
# capabilities:
|
||||
# drop:
|
||||
# - ALL
|
||||
# readOnlyRootFilesystem: true
|
||||
# runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port: 8080
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
||||
hosts:
|
||||
- host: geoserver.local
|
||||
tls: []
|
||||
# - secretName: chart-example-tls
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
resources: {}
|
||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||
# choice for the user. This also increases chances charts run on environments with little
|
||||
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||
# limits:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
# requests:
|
||||
# cpu: 100m
|
||||
# memory: 128Mi
|
||||
|
||||
nodeSelector: {}
|
||||
|
||||
tolerations: []
|
||||
|
||||
affinity: {}
|
||||
|
||||
Reference in New Issue
Block a user