devel: rename manifests/ to kustomizations/

This commit is contained in:
Jonas Juselius
2024-06-06 08:52:13 +02:00
parent e0af3046ca
commit accd4d3e4e
149 changed files with 0 additions and 0 deletions
@@ -0,0 +1,9 @@
- op: replace
path: /spec/rules/0/http/paths/0/path
value: /geoserver/ows
- op: add
path: /spec/ingressClassName
value: nginx
@@ -0,0 +1,9 @@
patches:
- target:
group: networking.k8s.io
version: v1
kind: Ingress
name: geoserver
path: ingress_patch.yaml
resources:
- _manifest.yaml
+1
View File
@@ -0,0 +1 @@
ncsa/geoserver
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,31 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-staging
nginx.ingress.kubernetes.io/backend-protocol: HTTP
nginx.ingress.kubernetes.io/ssl-redirect: "true"
atlantis.oceanbox.io/expose: internal
labels:
app.kubernetes.io/instance: prod-geoserver
app.kubernetes.io/name: geoserver
name: geoserver-internal
namespace: geoserver
spec:
ingressClassName: nginx
rules:
- host: geoserver.srv.oceanbox.io
http:
paths:
- backend:
service:
name: prod-geoserver
port:
number: 8080
path: /geoserver
pathType: ImplementationSpecific
tls:
- hosts:
- geoserver.srv.oceanbox.io
secretName: prod-geoserver-tls
@@ -0,0 +1,4 @@
namePrefix: prod-
resources:
- ingress-web.yaml
- ../base
@@ -0,0 +1,31 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-staging
nginx.ingress.kubernetes.io/backend-protocol: HTTP
nginx.ingress.kubernetes.io/ssl-redirect: "true"
atlantis.oceanbox.io/expose: internal
labels:
app.kubernetes.io/instance: staging-geoserver
app.kubernetes.io/name: geoserver
name: geoserver-internal
namespace: geoserver
spec:
ingressClassName: nginx
rules:
- host: geoserver.beta.oceanbox.io
http:
paths:
- backend:
service:
name: staging-geoserver
port:
number: 8080
path: /geoserver
pathType: ImplementationSpecific
tls:
- hosts:
- geoserver.beta.oceanbox.io
secretName: staging-geoserver-tls
@@ -0,0 +1,4 @@
namePrefix: staging-
resources:
- ingress-web.yaml
- ../base
+111
View File
@@ -0,0 +1,111 @@
# 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: prod-geoserver
passwordKey: geoserver-admin-password
cors:
enabled: true
extension:
install: false
stableExtension: ""
demoData:
skip: true
startup:
failureThreshold: 10
periodSeconds: 30
imagePullSecrets: []
nameOverride: ""
fullnameOverride: "geoserver"
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: "geoserver.srv.oceanbox.io"
# 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: false
allowPrivilegeEscalation: true
seccompProfile:
type: RuntimeDefault
runAsNonRoot: false
runAsUser: 0
service:
type: ClusterIP
port: 8080
ingress:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-staging
nginx.ingress.kubernetes.io/backend-protocol: HTTP
nginx.ingress.kubernetes.io/ssl-redirect: "true"
# nginx.ingress.kubernetes.io/whitelist-source-range: 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
hosts:
- host: geoserver.srv.oceanbox.io
tls:
- secretName: prod-geoserver-tls
hosts:
- geoserver.srv.oceanbox.io
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: {}
@@ -0,0 +1,111 @@
# 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: staging-geoserver
passwordKey: geoserver-admin-password
cors:
enabled: true
extension:
install: false
stableExtension: ""
demoData:
skip: true
startup:
failureThreshold: 10
periodSeconds: 30
imagePullSecrets: []
nameOverride: ""
fullnameOverride: "geoserver"
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: "geoserver.beta.oceanbox.io"
# 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: false
allowPrivilegeEscalation: true
seccompProfile:
type: RuntimeDefault
runAsNonRoot: false
runAsUser: 0
service:
type: ClusterIP
port: 8080
ingress:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-staging
nginx.ingress.kubernetes.io/backend-protocol: HTTP
nginx.ingress.kubernetes.io/ssl-redirect: "true"
atlantis.oceanbox.io/expose: internal
hosts:
- host: geoserver.beta.oceanbox.io
tls:
- secretName: staging-geoserver-tls
hosts:
- geoserver.beta.oceanbox.io
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: {}
+106
View File
@@ -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: {}