Forgot to delete a few comments from the code (Nothing confidential/senstive just more annoying to look at than anything)

This commit is contained in:
Alan Bridgeman 2025-02-11 13:07:02 -06:00
parent b3b43329cd
commit 8a7771b2f3
4 changed files with 5 additions and 29 deletions

View file

@ -228,11 +228,4 @@ class Deployment (Template):
f.write(' ' + ' ' ' ' + ' ' + ' ' + ' ' + ' ' + 'name: {{ .Release.Name }}-' + third_party.name + '-secret' + '\n')
f.write(' ' + ' ' ' ' + ' ' + ' ' + ' ' + ' ' + f'key: {var.replace("_", "-")}' + '\n')
f.write(' ' + ' ' + ' ' + ' ' + '{{- end }}' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + '{{- if .Values.thirdParty.openai.enabled }}' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + '- name: OPEANAI_API_KEY' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + ' ' + 'valueFrom:' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + ' ' + ' ' + 'secretKeyRef:' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + 'name: {{ .Release.Name }}-openai-secret' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + 'key: api-key' + '\n')
#f.write(' ' + ' ' + ' ' + ' ' + '{{- end }}' + '\n')
f.write(' ' + ' ' + ' ' + ' ' + '{{- end }}' + '\n')

View file

@ -119,7 +119,7 @@ class HelmChart:
snake_case_name += token.capitalize()
f.write(f'{snake_case_name}: "{value["value"]}"' + '\n')
#f.write('privateRegistryToken: "<Private Registry Token>"' + '\n')
f.write('\n')
# If a OAuth template is included in the provided templates than we want to include the appropriate section to the `values.yaml` file.
@ -266,12 +266,7 @@ class HelmChart:
if token != snake_case_name:
snake_case_name += token.capitalize()
f.write(' ' + f'{snake_case_name}: "{value["value"]}"' + '\n')
#f.write(' ' + 'activityProperties: activity' + '\n')
#f.write(' ' + 'eventProperties: eventProps' + '\n')
#f.write(' ' + 'localeProperties: locales' + '\n')
#f.write(' ' + 'organizerProperties: organizerProps' + '\n')
#f.write(' ' + 'userProperties: userProps' + '\n')
#f.write(' ' + 'templates: templates' + '\n')
f.write('\n')
# If a Redis template is included in the provided templates than we want to include the appropriate section to the values.yaml file.
@ -354,13 +349,6 @@ class HelmChart:
snake_case_name += token.capitalize()
f.write(' ' + ' ' + f'{snake_case_name}: {value}' + '\n')
f.write(' ' + ' ' + '\n')
#f.write(' ' + '# Configuration for the OpenAI integration' + '\n')
#f.write(' ' + 'openai:' + '\n')
#f.write(' ' + ' ' + '# If the OpenAI integration is enabled' + '\n')
#f.write(' ' + ' ' + 'enabled: true' + '\n')
#f.write(' ' + ' ' + '\n')
#f.write(' ' + ' ' + '# The OpenAI API key' + '\n')
#f.write(' ' + ' ' + 'apiKey: ""' + '\n')
def write_helmignore(self):
with open('.helmignore', 'w') as f:

View file

@ -26,5 +26,5 @@ class ThirdPartyService (Template):
snake_case_name += token.capitalize()
f.write(' ' + key.replace('_', '-') + ': {{ .Values.thirdParty.' + self.name + '.' + snake_case_name + ' | b64enc }}' + '\n')
#f.write(' ' + 'api-key: {{ .Values.thirdParty.openai.apiKey | b64enc }}' + '\n')
f.write('{{- end -}}' + '\n')