-
Notifications
You must be signed in to change notification settings - Fork 1
docs: 12 PR 누적 동기화 (README + HANDOFF + TASKS) #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,6 +96,29 @@ PG18 활성화: `--feature-gates=PostgresEighteen=true`. Citus 호환 발표는 | |
|
|
||
| --- | ||
|
|
||
| ## Quickstart (Helm — P1-4 alpha) | ||
|
|
||
| ```bash | ||
| # 1. Helm chart 설치 (operator + RBAC + NetworkPolicy 보안 baseline 한 번에) | ||
| helm install my-operator ./charts/postgresql-operator \ | ||
| --namespace postgres-operator-system --create-namespace | ||
|
|
||
| # 2. (선택) LibPQExecutor 활성화 — single-cluster (P0-6 phase 2a) | ||
| helm upgrade my-operator ./charts/postgresql-operator \ | ||
| --reuse-values \ | ||
| --set citusLibPQ.dsn="host=<coord-svc-dns> port=5432 user=postgres dbname=postgres sslmode=require" | ||
|
|
||
| # 3. 또는 multi-cluster (P0-6 phase 2b — cluster별 환경 변수) | ||
| # Deployment.spec.containers[0].env에 직접 추가: | ||
| # - name: CITUS_LIBPQ_DSN_<namespace>__<cluster-name> | ||
| # value: "host=..." | ||
|
|
||
| # 4. Sample PostgresCluster 적용 | ||
| kubectl apply -f config/samples/postgres_v1alpha1_postgrescluster.yaml | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This Quickstart command references Useful? React with 👍 / 👎. |
||
| ``` | ||
|
|
||
| NOTES.txt가 install 직후 다음 단계를 안내합니다 (NullExecutor 사용 중 인지, HA replicas 권장 등). | ||
|
|
||
| ## Quickstart (계획, Phase 1 완료 시 활성화) | ||
|
|
||
| ```bash | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Step 1 installs the release into
postgres-operator-system, but Step 2 runshelm upgradewithout--namespace; Helm commands are namespace-scoped (-n, --namespaceis the scope for the request, and release lookup follows current context namespace), so this upgrade will fail for users whose active namespace is stilldefaultinstead ofpostgres-operator-system.Useful? React with 👍 / 👎.