Change chart directory structure
This commit is contained in:
@@ -0,0 +1,85 @@
|
||||
storage:
|
||||
credentials:
|
||||
# S3 credentials for accessing the storage
|
||||
# Credential secret must contain the following keys - accessKey, secretKey.
|
||||
s3:
|
||||
- bucketPath: s3://test
|
||||
region: us-east-1
|
||||
awsRoleArn:
|
||||
serviceEndpoint: https://minio.example.org
|
||||
# Client secret must contain the following keys - accessKey, secretKey.
|
||||
credentialsSecretName: minio-secret
|
||||
|
||||
auth:
|
||||
enabled: false
|
||||
# List of users to be created in the system. Each user must contain the following keys - name, email.
|
||||
users:
|
||||
- name: admin
|
||||
email: paasup@paasup.io
|
||||
|
||||
provider: keycloak
|
||||
authorizationUrl: https://keycloak.example.org/auth/realms/paasup/protocol/openid-connect/auth
|
||||
|
||||
# Client secret must contain the following keys - clientId, clientSecret.
|
||||
clientSecretName: uc-sso-secret
|
||||
|
||||
privateCA:
|
||||
enabled: true
|
||||
secretName: "unitycatalog-tls"
|
||||
|
||||
server:
|
||||
statefulset:
|
||||
image:
|
||||
repository: paasup/unitycatalog
|
||||
tag: "0.3.0-minio-2"
|
||||
resources: {}
|
||||
nodeSelector: {}
|
||||
tolerations: []
|
||||
affinity: {}
|
||||
ingress:
|
||||
enabled: true
|
||||
className: kong
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: root-ca-issuer
|
||||
konghq.com/https-redirect-status-code: '301'
|
||||
konghq.com/protocols: https
|
||||
hosts:
|
||||
- host: unitycatalog.example.org
|
||||
paths:
|
||||
- path: /
|
||||
pathType: ImplementationSpecific
|
||||
tls:
|
||||
- hosts:
|
||||
- unitycatalog.example.org
|
||||
secretName: unitycatalog-tls
|
||||
config:
|
||||
persistence:
|
||||
enabled: true
|
||||
accessModes: [ "ReadWriteOnce" ]
|
||||
size: 100Mi
|
||||
storageClassName: ""
|
||||
logLevel: "INFO"
|
||||
# logLevel: "DEBUG"
|
||||
|
||||
|
||||
|
||||
db:
|
||||
type: postgresql
|
||||
postgresqlConfig:
|
||||
user: uc_default_user
|
||||
password: uc_default_password
|
||||
database: ucdb
|
||||
|
||||
postgresql:
|
||||
enabled: true
|
||||
auth:
|
||||
username: "uc_default_user"
|
||||
password: "uc_default_password"
|
||||
database: "ucdb"
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
size: 5Gi
|
||||
storageClassName: ""
|
||||
Reference in New Issue
Block a user