dip questions yaml add

This commit is contained in:
ychangkim
2026-06-16 16:37:07 +09:00
parent f4d287abef
commit 6805aa652f
27 changed files with 703 additions and 2 deletions
@@ -0,0 +1,9 @@
questions:
- variable: "$openmetadata.mysql.password"
label: openmetadata mysql password
type: hidden
default: ""
- variable: "$airflow.mysql.password"
label: airflow mysql password
type: hidden
default: ""
@@ -13,13 +13,13 @@ airflow:
dags: dags:
persistence: persistence:
enabled: true enabled: true
storageClassName: "nfs-client" storageClassName: ""
accessMode: ReadWriteMany accessMode: ReadWriteMany
size: 1Gi size: 1Gi
logs: logs:
persistence: persistence:
enabled: true enabled: true
storageClassName: "nfs-client" storageClassName: ""
size: 1Gi size: 1Gi
data: data:
metadataConnection: metadataConnection:
@@ -0,0 +1,156 @@
questions:
- variable: "namespace"
label: Kafka namespace
type: hidden
default: "${$kafka_cluster_namespace}"
- variable: "$kafka_cluster_namespace"
label: Kafka Cluster
type: kafka-cluster
required: true
default: ""
- variable: "postgresql.source"
label: Postgresql Source
type: boolean
default: ""
- variable: "$database.host"
label: Database host
type: string
required: true
default: "postgresql-postgresql-ha-postgresql.postgresql.svc.cluster.local"
show_if: "postgresql.source=true"
- variable: "$database.user"
label: Database user
type: string
required: true
default: "postgres"
show_if: "postgresql.source=true"
- variable: "$database.password"
label: Database password
type: password
required: true
default: ""
show_if: "postgresql.source=true"
- variable: "$database.db"
label: Database dbname
type: string
required: true
default: "postgres"
show_if: "postgresql.source=true"
- variable: "$database.table.include"
label: Database include table
type: string
required: true
default: "public.table1, public.table2"
show_if: "postgresql.source=true"
- variable: "$database.slot"
label: Slot name
type: string
required: true
default: ""
show_if: "postgresql.source=true"
- variable: "s3.target"
label: S3 Sink
type: boolean
default: ""
- variable: "$s3.url"
label: S3 Url
type: string
required: true
default: "http://minio.minio.svc.cluster.local:9000"
show_if: "s3.target=true"
- variable: "$s3.accesskey"
label: S3 AccessKey
type: string
required: true
default: ""
show_if: "s3.target=true"
- variable: "$s3.secretkey"
label: S3 SecretKey
type: password
required: true
default: ""
show_if: "s3.target=true"
- variable: "$s3.bucket"
label: S3 Bucket
type: string
required: true
default: ""
show_if: "s3.target=true"
- variable: "star.target"
label: Starrocks Sink
type: boolean
default: ""
- variable: "$star.config.topics"
label: Topics
type: string
required: true
default: ""
show_if: "star.target=true"
- variable: "$star.namespace"
label: Starrocks Namespace
type: string
required: true
default: ""
show_if: "star.target=true"
- variable: "$star.database.name"
label: Starrocks Database
type: string
required: true
default: ""
show_if: "star.target=true"
- variable: "$star.username"
label: Starrocks Username
type: string
required: true
default: ""
show_if: "star.target=true"
- variable: "$star.password"
label: Starrocks Password
type: password
required: true
default: ""
show_if: "star.target=true"
- variable: "$star.topic2table"
label: Topic to table
type: string
default: ""
show_if: "star.target=true"
- variable: "starjson.target"
label: Starrocks Sink (Json)
type: boolean
default: ""
- variable: "$starjson.config.topics"
label: Topics
type: string
required: true
default: ""
show_if: "starjson.target=true"
- variable: "$starjson.namespace"
label: Starrocks Namespace
type: string
required: true
default: ""
show_if: "starjson.target=true"
- variable: "$starjson.database.name"
label: Starrocks Database
type: string
required: true
default: ""
show_if: "starjson.target=true"
- variable: "$starjson.username"
label: Starrocks Username
type: string
required: true
default: ""
show_if: "starjson.target=true"
- variable: "$starjson.password"
label: Starrocks Password
type: password
required: true
default: ""
show_if: "starjson.target=true"
- variable: "$starjson.topic2table"
label: Topic to table
type: string
default: ""
show_if: "starjson.target=true"
@@ -0,0 +1,78 @@
questions:
- variable: "namespace"
label: Kafka namespace
type: hidden
default: "${$kafka_cluster_namespace}"
- variable: "$kafka_cluster_namespace"
label: Kafka Cluster
type: kafka-cluster
required: true
default: ""
- variable: "$topicName"
label: Topic
type: multiline
required: true
default: "public.table1\npublic.table2"
- variable: "topicSize"
label: Topic Size
type: enum
required: true
default: ""
options:
- "small"
- "middle"
- "large"
- variable: "$topic.partition"
label: Partition
type: string
required: true
default: "3"
show_if: "topicSize=small"
- variable: "$topic.partition"
label: Partition
type: string
required: true
default: "6"
show_if: "topicSize=middle"
- variable: "$topic.partition"
label: Partition
type: string
required: true
default: "12"
show_if: "topicSize=large"
- variable: "$topic.retention"
label: Retention
type: string
required: true
default: "-1"
show_if: "topicSize=small"
- variable: "$topic.retention"
label: Retention
type: string
required: true
default: "1073741824"
show_if: "topicSize=middle"
- variable: "$topic.retention"
label: Retention
type: string
required: true
default: "3221225472"
show_if: "topicSize=large"
- variable: "$topic.segment"
label: Segment
type: string
required: true
default: "14"
show_if: "topicSize=small"
- variable: "$topic.segment"
label: Segment
type: string
required: true
default: "268435456"
show_if: "topicSize=middle"
- variable: "$topic.segment"
label: Segment
type: string
required: true
default: "805306368"
show_if: "topicSize=large"
@@ -0,0 +1,41 @@
questions:
- variable: "$dags.gitSync.repo"
label: Git Repo URL
type: string
required: true
default: "https://git-url/org/repo.git"
- variable: infisical.GIT_SYNC_USERNAME
label: Git username
type: string
required: true
default: ""
- variable: infisical.GIT_SYNC_PASSWORD
label: Git password
type: password
required: true
default: ""
- variable: infisical.GITSYNC_USERNAME
label: Git username
type: hidden
default: "${infisical.GIT_SYNC_USERNAME}"
- variable: infisical.GITSYNC_PASSWORD
label: Git password
type: hidden
default: "${infisical.GIT_SYNC_PASSWORD}"
- variable: infisical.password
label: DB Password
type: hidden
default: ""
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: infisical.connection
label: postgres connection
type: hidden
default: "postgresql://postgres:${infisical.postgres-password}@$CATALOG_NAME-postgresql.$CATALOG_NAME:5432/postgres?sslmode=disable"
- variable: "$webserver.defaultUser.password"
label: Web admin password
type: password
required: true
default: ""
@@ -0,0 +1,56 @@
questions:
- variable: "$flink_cdc_session_namespace"
label: Flink cdc session
type: flink-cdc-session
required: true
default: ""
- variable: "$postgres.hostname"
label: Postgress host
type: string
required: true
default: "postgres-postgresql.flink-test.svc.cluster.local"
- variable: "$postgres.username"
label: Postgress username
type: string
required: true
default: "flink_cdc"
- variable: "$postgres.password"
label: Postgress password
type: password
required: true
default: ""
- variable: "$postgres.slotName"
label: Postgress slotName
type: string
required: true
default: "flink_cdc_slot"
- variable: "$postgres.tables"
label: Postgress tables
type: multiline
required: true
default: "testdb.public.orders\ntestdb.public.users"
- variable: "$sink.catalog.uri"
label: Lakekeeper host
type: string
required: true
default: "https://lakekeeper.example.org/catalog"
- variable: "$sink.catalog.warehouse"
label: Lakekeeper warehouse
type: string
required: true
default: "minio"
- variable: "$sink.catalog.s3Endpoint"
label: Lakekeeper S3 Endpoint
type: string
required: true
default: "http://minio.minio.svc.cluster.local:9000"
- variable: "$route.sourceTable"
label: Source routing table
type: string
required: true
default: "public.orders"
- variable: "$route.sinkTable"
label: Sink routing table
type: string
required: true
default: "testdb_public.orders"
@@ -0,0 +1,26 @@
questions:
- variable: "$checkpointStorage.checkpointDir"
label: Check point dir
type: string
required: true
default: "flink/checkpoints"
- variable: "$checkpointStorage.savepointDir"
label: Save point dir
type: string
required: true
default: "flink/savepoints"
- variable: "$checkpointStorage.s3.endpoint"
label: Check point S3 Endpoint
type: string
required: true
default: "http://minio.minio.svc.cluster.local:9000"
- variable: "infisical.access-key-id"
label: Check point S3 Accesskey
type: string
required: true
default: ""
- variable: "infisical.secret-access-key"
label: Check point S3 SecretKey
type: password
required: true
default: ""
@@ -0,0 +1,10 @@
questions:
- variable: "$kafka_cluster_namespace"
label: Kafka Cluster
type: kafka-cluster
required: true
default: ""
- variable: "$sessioncluster.s3a.endpoint"
label: S3 Endpoint
type: string
default: "https://minio.example.org"
@@ -0,0 +1,9 @@
questions:
- variable: infisical.password
label: DB Password
type: hidden
default: ""
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
@@ -0,0 +1,10 @@
questions:
- variable: infisical.username
label: username
type: hidden
default: "sudouser"
- variable: infisical.password
label: Password
type: password
required: true
default: ""
@@ -0,0 +1,28 @@
questions:
- variable: "$image.repository"
label: Jupyter image
type: enum
required: true
default: ""
options:
- "jupyter/scipy-notebook:ubuntu-24.04"
- "jupyter/scipy-notebook:conda-26.1.1"
- "jupyter/pyspark-notebook:spark-4.1.1"
- "jupyter/pyspark-notebook:conda-26.1.1"
- "jupyter/pytorch-notebook:cuda12-notebook-7.5.5"
- "jupyter/pytorch-notebook:cuda12-python-3.13"
- variable: "$jupyterConfig.token"
label: Login password
type: password
required: false
default: ""
- variable: "$homeVolume.enabled"
label: Home directory volume
type: boolean
required: false
default: "true"
- variable: "$dataVolume.enabled"
label: Data volume
type: boolean
required: false
default: "false"
@@ -0,0 +1,6 @@
questions:
- variable: "$kafka_cluster_namespace"
label: Kafka Cluster
type: kafka-cluster
required: true
default: ""
@@ -0,0 +1,16 @@
questions:
- variable: "namespace"
label: Kubeflow name
type: kubeflow
required: true
default: ""
- variable: "$model.name"
label: Model name
type: string
required: true
default: "phi-1_5"
- variable: "$model.volume"
label: Model volume
type: string
required: true
default: "pvc://model-volume/phi-1_5"
@@ -0,0 +1,6 @@
questions:
- variable: "$authz.openfga.apikey"
label: authz apikey
type: hidden
required: true
default: ""
@@ -0,0 +1,19 @@
questions:
- variable: infisical.password
label: DB Password
type: hidden
default: ""
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: "$langflow.backend.env.username"
label: Username
type: string
required: true
default: ""
- variable: "$langflow.backend.env.password"
label: Password
type: password
required: true
default: ""
@@ -0,0 +1,30 @@
questions:
- variable: infisical.password
label: DB Password
type: hidden
default: ""
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: infisical.valkey-password
label: redis password
type: hidden
default: ""
- variable: infisical.admin-password
label: clickhouse password
type: hidden
default: ""
- variable: "$langfuse.salt.value"
label: SALT
type: hidden
default: ""
- variable: "$langfuse.encryptionKey.value"
label: EncryptionKey
type: hidden
default: ""
valid_chars: "hex"
- variable: "$langfuse.nextauth.secret.value"
label: Nextauth secret
type: hidden
default: ""
@@ -0,0 +1,6 @@
questions:
- variable: "$masterkey"
label: Master key
type: password
required: true
default: ""
@@ -0,0 +1,21 @@
questions:
- variable: "$postgresql.auth.password"
label: db password
type: hidden
required: true
default: ""
- variable: "$extraEnvVars.s3endpoint"
label: S3 Endpoint
type: string
required: true
default: "http://minio.minio.svc.cluster.local:9000"
- variable: "$artifactRoot.s3.awsAccessKeyId"
label: S3 AccessKey
type: string
required: true
default: ""
- variable: "$artifactRoot.s3.awsSecretAccessKey"
label: S3 SecretKey
type: password
required: true
default: ""
@@ -0,0 +1,6 @@
questions:
- variable: "$ngcAPIKey"
label: API Key
type: password
required: true
default: ""
@@ -0,0 +1,25 @@
questions:
- variable: infisical.NGC_API_KEY
label: NGC_API_KEY
type: hidden
default: "${$imagePullSecrets.password}"
- variable: "$image.repository"
label: Model repository
type: string
required: true
default: "nvcr.io/nim/meta/llama-3.2-1b-instruct"
- variable: "$image.tag"
label: Model repository tag
type: string
required: true
default: "1.8.3"
- variable: "$imagePullSecrets.password"
label: NGC API KEY
type: string
required: true
default: ""
- variable: "$nimService.modelName"
label: Model name
type: string
required: true
default: "meta/llama-3.2-1b-instruct"
@@ -0,0 +1,5 @@
questions:
- variable: "$extraEnvVars"
label: secret key
type: hidden
default: ""
@@ -0,0 +1,18 @@
questions:
- variable: infisical.password
label: Password
type: password
required: true
default: ""
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: infisical.admin-password
label: admin-password
type: hidden
default: ""
- variable: infisical.repmgr-password
label: repmgr-password
type: hidden
default: ""
@@ -0,0 +1,13 @@
questions:
- variable: "$env.mysqlPassword"
label: Mysql password
type: hidden
default: ""
- variable: "$env.minioPassword"
label: Minio password
type: hidden
default: ""
- variable: "$env.redisPassword"
label: Redis password
type: hidden
default: ""
@@ -0,0 +1,25 @@
questions:
- variable: "infisical.password"
label: Init password
type: hidden
default: ""
- variable: "$starrocksFESpec.config.endpoint"
label: S3 Endpoint
type: string
required: true
default: ""
- variable: "$starrocksFESpec.config.accesskey"
label: S3 AccessKey
type: string
required: true
default: ""
- variable: "$starrocksFESpec.config.secretkey"
label: S3 SecretKey
type: password
required: true
default: ""
- variable: "$starrocksFESpec.config.path"
label: S3 Path
type: string
required: true
default: ""
@@ -0,0 +1,26 @@
questions:
- variable: "$configOverrides.secret"
label: secret key
type: hidden
default: ""
- variable: "$configOverrides.mapbox"
label: MAPBOX API KEY
type: string
default: ""
- variable: infisical.password
label: DB Password
type: password
required: true
default: ""
- variable: "$supersetNode.connections.db_pass"
label: DB Password
type: hidden
default: "${infisical.password}"
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: infisical.redis-password
label: redis-password
type: hidden
default: ""
@@ -0,0 +1,42 @@
questions:
- variable: "$db.postgresqlConfig.password"
label: DB Password
type: password
required: true
default: ""
- variable: infisical.password
label: DB Password
type: hidden
default: "${$db.postgresqlConfig.password}"
- variable: infisical.postgres-password
label: postgres-password
type: hidden
default: ""
- variable: "$storage.credentials.s3.serviceEndpoint"
label: S3 Endpoint
type: string
required: true
default: "https://minio.example.org"
- variable: "$storage.credentials.s3.bucketPath"
label: S3 bucket
type: string
required: true
default: "s3://path"
- variable: infisical.accessKey
label: S3 accessKey
type: string
required: true
default: ""
- variable: infisical.secretKey
label: S3 secretKey
type: password
required: true
default: ""
- variable: infisical.clientId
label: clientId
type: hidden
default: "$KEYCLOAK_CLIENT_ID"
- variable: infisical.clientSecret
label: clientSecret
type: hidden
default: "$KEYCLOAK_CLIENT_SECRET"
@@ -0,0 +1,14 @@
questions:
- variable: "$spec.predictor.model.modelFormat.name"
label: Model
type: enum
required: true
default: ""
options:
- "meta-llama/Llama-Prompt-Guard-2-86M"
- "meta-llama/Prompt-Guard-86M"
- variable: "$servingEngineSpec.modelSpec.hf_token"
label: Huggingface token
type: string
required: true
default: "hf_xxxx"