Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

updated registry and repo references (via docs) #5

Merged
merged 4 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
- name: Run chart-testing (install)
timeout-minutes: 10
run: |
ct install --config ct.yaml --debug --helm-extra-set-args "--set=postgresql.enabled=true --set=minio.enabled=true --set=image.authRequired.enabled=true --set=image.registry=dl.qameta.io --set=image.repository=docker-internal --set=image.authRequired.username=${{ secrets.ARTIFACTORY_USER }} --set=image.authRequired.password=${{ secrets.ARTIFACTORY_PASS }}"
ct install --config ct.yaml --debug --helm-extra-set-args "--set=postgresql.enabled=true --set=minio.enabled=true --set=image.authRequired.enabled=true --set=image.registry=dl.qameta.io --set=image.repository=docker-internal --set=image.imageName=allure-testops --set=image.authRequired.credsKubeSecretName=qameta-secret --set=image.authRequired.username=${{ secrets.ARTIFACTORY_USER }} --set=image.authRequired.password=${{ secrets.ARTIFACTORY_PASS }}"
14 changes: 8 additions & 6 deletions charts/testops/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,22 @@ version: 5.3.3
# Deploy related
# `image` section defines the source of the binary files of the application
# this section needs to be updated as follows:
# - registry – the name of the registry described in the documentation of the deployment with the Helm Chart or used by your company as a proxy
# - repository – the name of the repo described in the documentation of the deployment with the Helm Chart or used by your company
# - username - the username for images registry either owned by Qameta Software or managed by your organisation
# - password - password for images registry either owned by Qameta Software or managed by your organisation
# - credsKubeSecretName is the label for the secret where chart should store registry authentication info
############################################################################################################
image:
registry: dl.qameta.io
repository: docker
imageName: allure-testops
registry: registry-address-here
repository: repo-name-see-in-docs
imageName: testops
pullPolicy: IfNotPresent
authRequired:
enabled: true
username: username
password: password
credsKubeSecretName: qameta-secret
username: username-received-from-sales
password: password-received-from-sales
credsKubeSecretName: testops-secret-name-here

############################################################################################################
# Deploy related
Expand Down
Loading