ai/at
1
0
This commit is contained in:
2026-02-04 22:52:06 +09:00
parent 88cb429951
commit 6fc031fcda
16 changed files with 1019 additions and 0 deletions

47
k8s/kustomization.yaml Normal file
View File

@@ -0,0 +1,47 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: atproto
resources:
- namespace.yaml
- postgres.yaml
- redis.yaml
- plc.yaml
- pds.yaml
- bgs.yaml
- bsky.yaml
- social-app.yaml
- ozone.yaml
- ozone-web.yaml
- jetstream.yaml
- feed.yaml
## レジストリを一括設定 (デプロイ先に応じて変更)
images:
- name: registry/plc
newName: localhost:5000/plc
- name: registry/pds
newName: localhost:5000/pds
- name: registry/bsky
newName: localhost:5000/bsky
- name: registry/bgs
newName: localhost:5000/bgs
- name: registry/social-app
newName: localhost:5000/social-app
- name: registry/ozone
newName: localhost:5000/ozone
- name: registry/ozone-web
newName: localhost:5000/ozone-web
- name: registry/jetstream
newName: localhost:5000/jetstream
- name: registry/feed
newName: localhost:5000/feed
## envs/ から Secret を自動生成
secretGenerator:
- name: atproto-secrets
envs:
- secrets.env
options:
disableNameSuffixHash: true