首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Helm没有配置我的意思

Helm没有配置我的意思
EN

Stack Overflow用户
提问于 2022-04-14 17:28:52
回答 1查看 297关注 0票数 -1

我的命令是在我的GitLab集群上安装一个microK8s图表。在这个命令中,我希望指示Helm部署一个GitLab,并在卷大小上进行一些配置。

代码语言:javascript
复制
$ microk8s.helm3 install gitlab-ce gitlab/gitlab --set global.hosts.domain=demo.jesaya,global.hosts.externalIP=10.8.60.205,global.edition=ce \
--set certmanager-issuer.email=example@gmail.com \
--set minio.persistence.size=5Gi \
--set prometheus.server.persistentVolume.size=2Gi \
--set redis.master.persistence.size=2Gi \
--set gitlab-runner.install=false \
--set gitlab.gitaly.persistence.size=5Gi \
--set postgresql.primary.master.persistence.size=2Gi,postgresql.primary.livenessProbe.initialDelaySeconds=600,postgresql.primary.readinessProbe.initialDelaySeconds=630 \
-n gitlab-ce

我的PVC总结:

代码语言:javascript
复制
$ microk8s.kubectl get pvc
NAME                                  STATUS   VOLUME                                     CAPACITY   ACCESS MODES   STORAGECLASS   AGE
gitlab-ce-minio                       Bound    pvc-81b221d4-7294-4cd5-b771-f21a7c03741c   5Gi        RWO            nfs0           12m
gitlab-ce-prometheus-server           Bound    pvc-ba159b8b-30f4-42b4-b27a-fdbe66eb678a   2Gi        RWO            nfs0           12m
redis-data-gitlab-ce-redis-master-0   Bound    pvc-6d1ed8ea-f502-4db9-84e7-40e3a083bbda   2Gi        RWO            nfs0           11m
repo-data-gitlab-ce-gitaly-0          Bound    pvc-f1da1672-5aa6-4563-a988-db38cdc38991   5Gi        RWO            nfs0           11m
data-gitlab-ce-postgresql-0           Bound    pvc-54095a82-ca79-4d75-badc-39778dc3bc90   8Gi        RWO            nfs0           11m

GitLab图表:

代码语言:javascript
复制
apiVersion: v1
appVersion: 14.9.3
dependencies:
- name: gitlab
  repository: ""
  version: '*.*.*'
- name: certmanager-issuer
  repository: ""
  version: '*.*.*'
- name: minio
  repository: ""
  version: '*.*.*'
- name: registry
  repository: ""
  version: '*.*.*'
- alias: certmanager
  condition: certmanager.install
  name: cert-manager
  repository: https://charts.jetstack.io/
  version: 1.5.4
- condition: prometheus.install
  name: prometheus
  repository: https://prometheus-community.github.io/helm-charts
  version: 15.0.4
- condition: postgresql.install
  name: postgresql
  repository: https://charts.bitnami.com/bitnami
  version: 8.9.4
- condition: gitlab-runner.install
  name: gitlab-runner
  repository: https://charts.gitlab.io/
  version: 0.39.0
- condition: global.grafana.enabled
  name: grafana
  repository: https://grafana.github.io/helm-charts
  version: 6.9.1
- condition: redis.install
  name: redis
  repository: https://charts.bitnami.com/bitnami
  version: 11.3.4
- condition: nginx-ingress.enabled
  name: nginx-ingress
  repository: ""
  version: '*.*.*'
description: Web-based Git-repository manager with wiki and issue-tracking features.
home: https://about.gitlab.com/
icon: https://gitlab.com/gitlab-com/gitlab-artwork/raw/master/logo/logo-square.png
keywords:
- gitlab
maintainers:
- email: support@gitlab.com
  name: GitLab Inc.
name: gitlab
sources:
- https://gitlab.com/gitlab-org/charts/gitlab
version: 5.9.3

我在这里没有找到任何根本原因。另一种PostgreSQL图表配置,如就绪和活性,也不像我想要的那样正常工作。

EN

回答 1

Stack Overflow用户

发布于 2022-04-14 17:44:02

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/71875576

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档