Skip to content

Commit

Permalink
Merge pull request #1414 from GiganticMinecraft/feat/add-mod-download…
Browse files Browse the repository at this point in the history
…er-on-debug-pr

PRごとにをデバッグサーバーを立ち上げるときのinitContainersにmod-downloaderを追加
  • Loading branch information
kory33 authored Nov 18, 2023
2 parents 28da34b + dd6e676 commit 1ace1f0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,27 @@ spec:
- "sh"
- "-c"
- 'wget -O /root/jmx-exporter-download/jmx-exporter-javaagent.jar "${JMX_EXPORTER_URL}"'
- name: mod-downloader
image: ghcr.io/giganticminecraft/mod-downloader:sha-8326d06
env:
- name: MINIO_ENDPOINT
value: seichi-private-plugin-blackhole-minio-console.minio:9001
- name: MINIO_ACCESS_KEY
valueFrom:
secretKeyRef:
name: mcserver--common--config-secrets
key: MINIO_DEBUG_ACCESS_KEY
- name: MINIO_ACCESS_SECRET
valueFrom:
secretKeyRef:
name: mcserver--common--config-secrets
key: MINIO_DEBUG_ACCESS_SECRET
- name: BUCKET_NAME
value: seichi-plugins
- name: BUCKET_PREFIX_NAME
value: deb-1-18-2
- name: DOWNLOAD_TARGET_DIR_PATH
value: /plugins

containers:
- resources:
Expand Down
4 changes: 3 additions & 1 deletion terraform/onp_cluster_minecraft_secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ resource "kubernetes_secret" "onp_minecraft_debug_secrets" {
}

data = {
DISCORDSRV_TOKEN = var.minecraft__discordsrv_bot_token
DISCORDSRV_TOKEN = var.minecraft__discordsrv_bot_token
MINIO_DEBUG_ACCESS_KEY = var.minio_debug_access_key
MINIO_DEBUG_ACCESS_SECRET = var.minio_debug_access_secret
}

type = "Opaque"
Expand Down

0 comments on commit 1ace1f0

Please sign in to comment.