Skip to content
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

fix(helm_prompt): Enhance prompt to generate optional Ingress resources #49

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/prompt_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def helm_template_generator(input : HelmTemplateGeneration) -> str:
Based on values.yaml, create all necessary Kubernetes templates in the templates directory:
if stateless is true, create deployment.yaml; if stateless is false, create statefulset.yaml.
If a persistence block exists, include pvc.yaml. If the ingress block is defined and ingress.enabled
is true, create ingress.yaml. Always create secrets.yaml for secure data storage.
is true, create ingress.yaml. if ingress.enabled is false, do not create ingress.yaml. Always create
secrets.yaml for secure data storage.

Ensure each template is fully parameterized to match values from values.yaml for flexible configuration.

Expand Down
Loading