mirror of
https://github.com/won-ktds/smarketing-manifest.git
synced 2025-12-06 14:46:23 +00:00
- Add azure-storage-configmap.yaml with storage account settings - Add azure-storage-secret.yaml with storage account key - Update marketing-content deployment envFrom to include Azure Storage - Update store deployment envFrom to include Azure Storage - Enable blob storage functionality for menu/store image uploads
22 lines
669 B
YAML
22 lines
669 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: azure-storage-config
|
|
namespace: smarketing
|
|
labels:
|
|
app.kubernetes.io/name: azure-storage
|
|
app.kubernetes.io/component: config
|
|
app.kubernetes.io/part-of: smarketing
|
|
data:
|
|
# Azure Storage Account 기본 정보
|
|
AZURE_STORAGE_ACCOUNT_NAME: "stdigitalgarage02"
|
|
AZURE_STORAGE_ENDPOINT: "https://stdigitalgarage02.blob.core.windows.net"
|
|
|
|
# 컨테이너 설정
|
|
AZURE_STORAGE_CONTAINER_NAME: "ai-content"
|
|
AZURE_STORAGE_MENU_CONTAINER: "smarketing-menu-images"
|
|
AZURE_STORAGE_STORE_CONTAINER: "smarketing-store-images"
|
|
|
|
# 파일 업로드 설정
|
|
AZURE_STORAGE_MAX_FILE_SIZE: "10485760" # 10MB
|