Skip to content

feat(k8s): add k8s - #10

Merged
Life-00 merged 1 commit into
mainfrom
feature/kuber
Jan 19, 2026
Merged

feat(k8s): add k8s#10
Life-00 merged 1 commit into
mainfrom
feature/kuber

Conversation

@Life-00

@Life-00 Life-00 commented Jan 19, 2026

Copy link
Copy Markdown
Owner

No description provided.

Copilot AI review requested due to automatic review settings January 19, 2026 08:38
@Life-00
Life-00 merged commit 1ec656f into main Jan 19, 2026
6 checks passed

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request adds Kubernetes configuration enhancements to the backend deployment, specifically adding support for pulling private container images from GitHub Container Registry and fixing a port configuration inconsistency.

Changes:

  • Added imagePullSecrets configuration to enable pulling the backend image from GitHub Container Registry (ghcr.io)
  • Fixed service port mismatch by changing from 8001 to 8000 to align with the container's targetPort

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@@ -18,6 +18,8 @@ spec:
labels:
app: backend
spec:

Copilot AI Jan 19, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The imagePullSecrets field references a secret named 'ghcr-pull', but there is no documentation or accompanying secret manifest explaining how to create this secret. Consider adding documentation (e.g., in a README or comment) with instructions on how to create the ghcr-pull secret, such as:

kubectl create secret docker-registry ghcr-pull --docker-server=ghcr.io --docker-username= --docker-password= --namespace=tva

This will help operators deploying this configuration understand the prerequisites.

Suggested change
spec:
spec:
# ghcr.io에서 이미지를 가져오기 위한 imagePullSecret 필요
# 사전 준비:
# kubectl create secret docker-registry ghcr-pull \
# --docker-server=ghcr.io \
# --docker-username=<username> \
# --docker-password=<token> \
# --namespace=tva

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants