-
Notifications
You must be signed in to change notification settings - Fork 7
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
ACS-8607: Create Helm chart for hxi-connector #349
ACS-8607: Create Helm chart for hxi-connector #349
Conversation
{{- end }} | ||
ports: | ||
- containerPort: {{ .Values.liveIngester.image.internalPort }} | ||
resources: {{- toYaml .Values.resources | nindent 12 }} |
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.
let's have a .liveIngester.resources
since different components should have different resources set
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.
Fixed
charts/alfresco-connector-hxi/templates/deployment-connector-hxi-live-ingester.yaml
Outdated
Show resolved
Hide resolved
charts/alfresco-connector-hxi/templates/secret-connector-hxi.yaml
Outdated
Show resolved
Hide resolved
Co-authored-by: Giovanni Toraldo <[email protected]>
…xi-live-ingester.yaml Co-authored-by: Giovanni Toraldo <[email protected]>
…name and fullname
…s probe will change CI outcome
repository: | ||
# -- URL of the Alfresco repository | ||
url: null | ||
existingConfigMap: |
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.
we probably want to add an existingSecret here to inject repository credentials
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.
Yes, I was working on that today - done
REPOSITORY_USERNAME: {{ .Values.repository.username | default "" | b64enc | quote }} | ||
REPOSITORY_PASSWORD: {{ .Values.repository.password | default "" | b64enc | quote }} | ||
REPOSITORY_CLIENT_ID: {{ .Values.repository.clientId | default "" | b64enc | quote }} | ||
REPOSITORY_CLIENT_SECRET: {{ .Values.repository.clientSecret | default "" | b64enc | quote }} |
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.
can we drop all of this if now we are using the version override stuff?
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.
There are two ways to obtain repo version, so it depends if we want to preserve the possibility to have an option? 🤔 Or we are ok with forcing admin to manually provide the version?
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.
Moreover these properties will be required by prediction-applier
memory: "10Mi" | ||
affinity: {} | ||
predictionApplier: | ||
enabled: true |
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.
Not used in templates
repository: quay.io/alfresco/alfresco-hxinsight-connector-live-ingester | ||
tag: 1.0.0-A13 | ||
pullPolicy: IfNotPresent | ||
internalPort: &liveIngesterPort 80 |
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.
8080
repository: quay.io/alfresco/alfresco-hxinsight-connector-prediction-applier | ||
tag: 1.0.0-A13 | ||
pullPolicy: IfNotPresent | ||
internalPort: &predictionApplierPort 80 |
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.
8080
https://hyland.atlassian.net/browse/ACS-8607