File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ deploy-demo: deploy
4343 kubectl apply -f ./deploy/samples/tabletriggers.yaml
4444 kubectl apply -f ./deploy/samples/crontrigger.yaml
4545 kubectl apply -f ./deploy/samples/user-jobs.yaml
46+ kubectl apply -f ./deploy/samples/table-provisioning-job-template.yaml
4647
4748undeploy-demo : undeploy
4849 kubectl delete -f ./deploy/samples/demodb.yaml || echo " skipping"
Original file line number Diff line number Diff line change 1+ apiVersion : hoptimator.linkedin.com/v1alpha1
2+ kind : Database
3+ metadata :
4+ name : iceberg
5+ spec :
6+ catalog : ICEBERG
7+ url : jdbc:demodb://names=ads
8+ dialect : Calcite
9+
10+ ---
11+
12+ apiVersion : hoptimator.linkedin.com/v1alpha1
13+ kind : JobTemplate
14+ metadata :
15+ name : table-provisioning-job-template
16+ spec :
17+ databases :
18+ - iceberg
19+ yaml : |
20+ apiVersion: hoptimator.linkedin.com/v1alpha1
21+ kind: TableProvisionJob
22+ metadata:
23+ name: {{name}}-provision-job
24+ spec:
25+ table: {{table}}
26+ database: {{database}}
You can’t perform that action at this time.
0 commit comments