You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.0 KiB
85 lines
2.0 KiB
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: "" |