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

feature: Change minio values to support Arm64 platform openinfradev/tks-issues#500 #187

Merged
merged 2 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
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
25 changes: 10 additions & 15 deletions lma/base/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,9 @@ spec:
- key: $kubernetes['container_name']
value: kibana|elasticsearch|fluent-bit
logExporter:
enabled: true
enabled: false
serviceMonitor:
enabled: true
enabled: false
spec:
nodeSelector:
taco-lma: enabled
Expand Down Expand Up @@ -800,22 +800,17 @@ spec:
type: helmrepo
repository: https://openinfradev.github.io/helm-repo
name: minio
version: 6.8.3
version: 5.0.4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minio 변경된 helm-charts 쪽도 변경이 있어야 할 것 같은데요.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

코멘트 감사합니다.
확인하여 Helm-chart에 5.0.4 버전 push하였습니다.

releaseName: minio
targetNamespace: lma
values:
accessKey:
password: TO_BE_FIXED
secretKey:
password: TO_BE_FIXED
defaultBuckets: TO_BE_FIXED
service:
type: NodePort
nodePort: 30002
values:
users: [] # MUST_BE_DEFINED
buckets: [] # MUST_BE_DEFINED
persistence:
storageClass: TO_BE_FIXED
accessMode: TO_BE_FIXED
size: TO_BE_FIXED
storageClass: MUST_BE_DEFINED
accessMode: ReadWriteOnce # tunable
size: 20Gi # tunable
mode: standalone
---
apiVersion: helm.fluxcd.io/v1
kind: HelmRelease
Expand Down
20 changes: 16 additions & 4 deletions lma/base/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,24 @@ charts:

- name: minio
override:
accessKey.password: $(defaultUser)
secretKey.password: $(defaultPassword)
defaultBuckets: "thanos, loki"
users:
- accessKey: $(defaultUser)
secretKey: $(defaultPassword)
policy: consoleAdmin
buckets:
- name: thanos
policy: public
purge: false
versioning: true
objectlocking: false
- name: loki
policy: public
purge: false
versioning: true
objectlocking: false
persistence.storageClass: $(storageClassName)
persistence.accessMode: ReadWriteOnce
persistence.size: 8Gi
persistence.size: 20Gi

- name: thanos
override:
Expand Down