You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

apiVersion: v1
kind: Secret
metadata:
  name: confluence-secret
  namespace: tools
type: Opaque
data:
  # root password is required to be specified
  ROOT_PASSWORD: Y29uZmx1ZW5jZQo=
  ## 密码为confluence
  # DATABASE:
  # USER:
  # PASSWORD:
---
apiVersion: mysql.presslabs.org/v1alpha1
kind: MysqlCluster
metadata:
  name: confluence
  namespace: tools
spec:
  replicas: 1
  secretName: confluence-secret
  image: harbor.uenpay.com/base/percona:8.0
  mysqlVersion: "8.0"

  podSpec:
    resources:
      requests:
        cpu: "4"
        memory: 8Gi
      limits:
        cpu: "4"
        memory: 8Gi

  volumeSpec:
    persistentVolumeClaim:
      storageClassName: cephrbd-sc
      accessModes: [ "ReadWriteOnce" ]
      resources:
        requests:
          storage: 30Gi


  • No labels