Skip to content

Commit

Permalink
FIX: rename issue
Browse files Browse the repository at this point in the history
Some instances were missed in the rename.

Signed-off-by: Jim Fitzpatrick <[email protected]>
  • Loading branch information
Boomatang committed Feb 26, 2025
1 parent b3e327a commit 8d8a86f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions utils/release/dependencies/dependencies-manifests.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

authorino_version=v$(yq '.dependencies.Authorino' $env/release.yaml)
dns_version=v$(yq '.dependencies.DNS' $env/release.yaml)
limitador_version=v$(yq '.dependencies.Limitador' $env/release.yaml)
authorino_version=v$(yq '.dependencies.authorino-operator' $env/release.yaml)
dns_version=v$(yq '.dependencies.dns-operator' $env/release.yaml)
limitador_version=v$(yq '.dependencies.limitador-operator' $env/release.yaml)

AUTHORINO_OPERATOR_GITREF=$authorino_version envsubst < $env/config/dependencies/authorino/kustomization.template.yaml > $env/config/dependencies/authorino/kustomization.yaml

Expand Down
2 changes: 1 addition & 1 deletion utils/release/operator/make_chart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ V="$(yq '.kuadrant-operator.version' $env/release.yaml)" yq --inplace eval '.ver
V="$(yq '.kuadrant-operator.version' $env/release.yaml)" yq --inplace eval '.appVersion = strenv(V)' $env/charts/kuadrant-operator/Chart.yaml
V="$(yq '.dependencies.authorino-operator' $env/release.yaml)" yq --inplace eval '(.dependencies[] | select(.name == "authorino-operator").version) = strenv(V)' $env/charts/kuadrant-operator/Chart.yaml
V="$(yq '.dependencies.limitador-operator' $env/release.yaml)" yq --inplace eval '(.dependencies[] | select(.name == "limitador-operator").version) = strenv(V)' $env/charts/kuadrant-operator/Chart.yaml
V="$(yq '.dependencies.dns-operartor' $env/release.yaml)" yq --inplace eval '(.dependencies[] | select(.name == "dns-operator").version) = strenv(V)' $env/charts/kuadrant-operator/Chart.yaml
V="$(yq '.dependencies.dns-operator' $env/release.yaml)" yq --inplace eval '(.dependencies[] | select(.name == "dns-operator").version) = strenv(V)' $env/charts/kuadrant-operator/Chart.yaml
2 changes: 1 addition & 1 deletion utils/release/operator/update_catalog_source.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

v=quay.io/kuadrant/kuadrant-operator-catalog:v$(yq '.kuadrant-operator.release' $env/release.yaml) \
v=quay.io/kuadrant/kuadrant-operator-catalog:v$(yq '.kuadrant-operator.version' $env/release.yaml) \
yq eval --inplace '.spec.image = strenv(v)' $env/config/deploy/olm/catalogsource.yaml
2 changes: 1 addition & 1 deletion utils/release/pre-validation/verify_release_file.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ check_field() {

check_field ".olm.channels" "olm.channels"
check_field ".olm.default-channel" "olm.default-channel"
check_field ".kuadrant.version" "kuadrant.version"
check_field ".kuadrant-operator.version" "kuadrant.version"
check_field ".dependencies.authorino-operator" "dependencies.authorino-operator"
check_field ".dependencies.console-plugin" "dependencies.console-plugin"
check_field ".dependencies.dns-operator" "dependencies.dns-operator"
Expand Down

0 comments on commit 8d8a86f

Please sign in to comment.