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

adjust chart version and structure #18

Merged
merged 1 commit into from
Feb 25, 2024
Merged
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
88 changes: 45 additions & 43 deletions kubernetes/apps/storage/minio/app/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ spec:
chart:
spec:
chart: app-template
version: 1.5.1
version: 2.6.0
sourceRef:
kind: HelmRepository
name: bjw-s-charts
name: bjw-s
namespace: flux-system
maxHistory: 3
install:
createNamespace: true
remediation:
Expand All @@ -25,18 +24,41 @@ spec:
uninstall:
keepHistory: false
values:
image:
repository: quay.io/minio/minio
tag: RELEASE.2023-05-04T21-44-30Z
env:
TZ: America/Denver
MINIO_UPDATE: "off"
MINIO_BROWSER_REDIRECT_URL: https://minio.${SECRET_DOMAIN}
MINIO_SERVER_URL: https://s3.${SECRET_DOMAIN}
envFrom:
- secretRef:
name: minio-secret
args: ["server", "/data", "--console-address", ":9001"]
controllers:
main:
image:
repository: quay.io/minio/minio
tag: RELEASE.2023-05-04T21-44-30Z
env:
TZ: America/Denver
MINIO_UPDATE: "off"
MINIO_BROWSER_REDIRECT_URL: https://minio.${SECRET_DOMAIN}
MINIO_SERVER_URL: https://s3.${SECRET_DOMAIN}
envFrom:
- secretRef:
name: minio-secret
args: ["server", "/data", "--console-address", ":9001"]
resources:
requests:
memory: 100Mi
cpu: 100m
limits:
memory: 750Mi
# probes:
# liveness: &probes
# enabled: true
# custom: true
# spec:
# httpGet:
# path: /minio/health/live
# port: 9000
# initialDelaySeconds: 0
# periodSeconds: 10
# timeoutSeconds: 1
# failureThreshold: 3
# readiness: *probes
startup:
enabled: false
service:
main:
enabled: true
Expand All @@ -46,21 +68,6 @@ spec:
api:
enabled: true
port: 9000
probes:
# liveness: &probes
# enabled: true
# custom: true
# spec:
# httpGet:
# path: /minio/health/live
# port: 9000
# initialDelaySeconds: 0
# periodSeconds: 10
# timeoutSeconds: 1
# failureThreshold: 3
# readiness: *probes
startup:
enabled: false
ingress:
main:
enabled: true
Expand Down Expand Up @@ -88,21 +95,16 @@ spec:
tls:
- hosts:
- *s3host
podSecurityContext:
runAsUser: 1024
runAsGroup: 100
fsGroup: 100
fsGroupChangePolicy: "OnRootMismatch"
supplementalGroups:
- 100
pod:
securityContext:
runAsUser: 1024
runAsGroup: 100
fsGroup: 100
fsGroupChangePolicy: "OnRootMismatch"
supplementalGroups:
- 100
persistence:
config:
enabled: true
existingClaim: minio-nfs
mountPath: /data
resources:
requests:
memory: 100Mi
cpu: 100m
limits:
memory: 750Mi
Loading