-
Notifications
You must be signed in to change notification settings - Fork 105
add clusterip, nodeport in k8s deployment #335
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -69,6 +69,8 @@ logs/ | |
|
|
||
| # vibe coding | ||
| .claude | ||
| .qwen | ||
| openspec | ||
| AGENTS.md | ||
| CLAUDE.md | ||
| QWEN.md | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -175,6 +175,11 @@ async def deploy_app_to_k8s(): | |||||
| }, | ||||||
| # Image pull policy | ||||||
| "image_pull_policy": "IfNotPresent", | ||||||
| # Service type configuration: | ||||||
| # - LoadBalancer: External access via cloud provider (default) | ||||||
| # - ClusterIP: Internal cluster access only, requires port-forward | ||||||
| # - NodePort: Access via node IP and allocated port | ||||||
| # service_type="ClusterIP", # Uncomment for cluster-internal access | ||||||
|
||||||
| # service_type="ClusterIP", # Uncomment for cluster-internal access | |
| # "service_type": "ClusterIP", # Uncomment for cluster-internal access |
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.
Spelling error: "kubectrl" should be "kubectl".