Skip to content

Commit

Permalink
charts: tweak values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed Sep 12, 2024
1 parent 2958466 commit c5324b0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 29 deletions.
2 changes: 1 addition & 1 deletion charts/magout-mastodon-server/templates/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: {{ include "magout-mastodon-server.fullname" . }}-gateway
spec:
replicas: {{ .Values.gateway.deploy.replicaCount }}
replicas: {{ .Values.gateway.deploy.replicas }}
selector:
matchLabels:
app.kubernetes.io/name: nginx
Expand Down
53 changes: 25 additions & 28 deletions charts/magout-mastodon-server/values.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# fullnameOverride: ""

mastodonVersion:
# image: ghcr.io/mastodon/mastodon:latest
# streamingImage: ghcr.io/mastodon/mastodon-streaming:latest
image: ghcr.io/mastodon/mastodon:v4.2.12
streamingImage: ghcr.io/mastodon/mastodon:v4.2.12

gateway:
# serverName: "example.com"
serverName: "" # CHANGE HERE
deploy:
replicaCount: 1
replicas: 1
image: nginx:latest
resources: {}
service:
Expand All @@ -16,29 +16,26 @@ gateway:

mastodonServer:
sidekiq:
# replicas: 1
# labels: {}
# annotations: {}
# envFrom: {}
# resources: {}
# periodicRestart:
# schedule: "0 0 * * *"
# timeZone: UTC
replicas: 1
labels: {}
annotations: {}
envFrom: {} # CHANGE HERE
resources: {}
periodicRestart: {}
#periodicRestart:
# schedule: "0 0 * * *"
# timeZone: UTC
web:
# replicas: 1
# labels: {}
# annotations: {}
# envFrom: {}
# resources: {}
# periodicRestart:
# schedule: "0 0 * * *"
# timeZone: UTC
replicas: 1
labels: {}
annotations: {}
envFrom: {} # CHANGE HERE
resources: {}
periodicRestart: {}
streaming:
# replicas: 1
# labels: {}
# annotations: {}
# envFrom: {}
# resources: {}
# periodicRestart:
# schedule: "0 0 * * *"
# timeZone: UTC
replicas: 1
labels: {}
annotations: {}
envFrom: {} # CHANGE HERE
resources: {}
periodicRestart: {}

0 comments on commit c5324b0

Please sign in to comment.