Last active
December 9, 2025 15:00
-
-
Save binarycat0/15fd70a2752b75ad5a5873bfa574129b to your computer and use it in GitHub Desktop.
Skaffold demo config for the article on Medium https://medium.com/@artur.rakhmatulin/deploying-apache-polaris-on-k8s-with-aws-s3-catalog-storage-406ab272844a
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: skaffold/v4beta11 | |
| kind: Config | |
| metadata: | |
| name: polaris | |
| deploy: | |
| helm: | |
| releases: | |
| - name: persistence-db | |
| remoteChart: binarycat-polaris-persistence-db | |
| repo: https://binarycat0.github.io/helm-charts-demo-polaris-persistence-db/ | |
| namespace: polaris | |
| createNamespace: true | |
| setValues: | |
| postgres: | |
| database: "POLARIS" | |
| username: "postgres" | |
| password: "password" | |
| persistence: | |
| keepPolicy: keep | |
| - name: polaris | |
| chartPath: "{{ .HOME }}/polaris/helm/polaris" | |
| namespace: polaris | |
| createNamespace: true | |
| valuesFiles: | |
| - "{{ .HOME }}/polaris/helm/polaris/values.yaml" | |
| setValues: | |
| features: | |
| SUPPORTED_CATALOG_STORAGE_TYPES: | |
| - S3 | |
| authentication: | |
| type: internal | |
| authenticator: | |
| type: default | |
| tokenBroker: | |
| secret: { } | |
| persistence: | |
| type: relational-jdbc | |
| relationalJdbc: | |
| secret: { } | |
| extraEnv: | |
| - name: QUARKUS_DATASOURCE_DB_KIND | |
| value: "postgresql" | |
| - name: QUARKUS_DATASOURCE_USERNAME | |
| value: "postgres" | |
| - name: QUARKUS_DATASOURCE_PASSWORD | |
| value: "password" | |
| - name: QUARKUS_DATASOURCE_JDBC_URL | |
| value: "jdbc:postgresql://postgres:5432/POLARIS" | |
| - name: AWS_ACCESS_KEY_ID | |
| valueFrom: | |
| secretKeyRef: | |
| name: demo-aws-access-key | |
| key: key_id | |
| - name: AWS_SECRET_ACCESS_KEY | |
| valueFrom: | |
| secretKeyRef: | |
| name: demo-aws-access-key | |
| key: key_secret | |
| - name: polaris-bootstrap | |
| remoteChart: binarycat-polaris-bootstrap | |
| repo: https://binarycat0.github.io/helm-charts-demo-polaris-bootstrap-job | |
| namespace: polaris | |
| setValues: | |
| persistence: | |
| database: "POLARIS" | |
| username: "postgres" | |
| password: "password" | |
| host: postgres | |
| port: 5432 | |
| bootstrap: | |
| realms: | |
| - "POLARIS" | |
| credentials: | |
| - "POLARIS,root,s3cr3t" | |
| polarisMgmt: | |
| host: polaris-mgmt | |
| port: 8182 | |
| portForward: | |
| - resourceType: service | |
| resourceName: postgres | |
| namespace: polaris | |
| port: 5432 | |
| localPort: 5432 | |
| - resourceType: service | |
| resourceName: polaris | |
| namespace: polaris | |
| port: 8181 | |
| localPort: 8181 | |
| - resourceType: service | |
| resourceName: polaris-mgmt | |
| namespace: polaris | |
| port: 8182 | |
| localPort: 8182 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment