mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
279 lines
6.6 KiB
YAML
279 lines
6.6 KiB
YAML
# Default values for hangar.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
base:
|
|
host: "https://hangar.test"
|
|
allowIndexing: "true"
|
|
namespace: "default"
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: {}
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
host: hangar.test
|
|
tls:
|
|
- secretName: hangar-tls
|
|
hosts:
|
|
- hangar.test
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
target: frontend
|
|
- path: /api/
|
|
pathType: ImplementationSpecific
|
|
target: backend
|
|
- path: /v3/api-docs
|
|
pathType: ImplementationSpecific
|
|
target: backend
|
|
- path: /robots.txt
|
|
pathType: ImplementationSpecific
|
|
target: backend
|
|
- path: /sitemap.xml
|
|
pathType: ImplementationSpecific
|
|
target: backend
|
|
- path: /global-sitemap.xml
|
|
pathType: ImplementationSpecific
|
|
target: backend
|
|
|
|
frontend:
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/hangarmc/hangar/frontend
|
|
pullPolicy: Always
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "latest"
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
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: 1000
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
|
|
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
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
config:
|
|
configEnv: "hangar.test"
|
|
backendHost: "http://hangar-backend:8080"
|
|
|
|
backend:
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/hangarmc/hangar/backend
|
|
pullPolicy: Always
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "latest"
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
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: 1000
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
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
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
config:
|
|
postgresql:
|
|
hostname: "hangar-postgresql"
|
|
port: 5432
|
|
username: "hangar"
|
|
password: "hangar"
|
|
database: "hangar"
|
|
options: "?currentSchema=hangar"
|
|
tokenSecret: "secret"
|
|
rpId: "localhost"
|
|
storage:
|
|
type: "local"
|
|
accessKey: "todo"
|
|
secretKey: "todo"
|
|
bucket: "todo"
|
|
objectStorageEndpoint: "http://localhost:9000"
|
|
cdnEndpoint: ""
|
|
cdnIncludeBucket: true
|
|
announcement: "This is a staging server for testing purposes. Data could be deleted at any time. That said, signups are open, please test stuff and report and feedback on github or discord!"
|
|
zipkinEndpoint: "http://hangar-zipkin:9411/api/v2/spans"
|
|
mail:
|
|
from: noreply@mail.papermc.dev
|
|
user: dum
|
|
pass: dum
|
|
host: mailslurper
|
|
port: 1025
|
|
|
|
zipkin:
|
|
image:
|
|
repository: ghcr.io/openzipkin/zipkin
|
|
pullPolicy: Always
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "latest"
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: { }
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: "true"
|
|
host: hangar.test
|
|
tls:
|
|
- secretName: hangar-tls
|
|
hosts:
|
|
- hangar.test
|
|
paths:
|
|
- path: /zipkin
|
|
pathType: ImplementationSpecific
|
|
|
|
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: 1000
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 9411
|
|
|
|
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
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 100
|
|
targetCPUUtilizationPercentage: 80
|
|
# targetMemoryUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
config:
|
|
test: "TEST"
|