Skip to content

Commit

Permalink
hardcode version for time being
Browse files Browse the repository at this point in the history
  • Loading branch information
rubik-cube-man committed Dec 13, 2023
1 parent 0da6844 commit 7826c86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/docker-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
VERSION: ${{ github.event.inputs.IMAGE_TAG }}
IMAGE: ghcr.io/teamziax/gitops-operator/gitops-operator
run: |
echo $VERSION
make docker-build docker-push
make bundle
make bundle-build bundle-push
Expand Down
2 changes: 1 addition & 1 deletion controllers/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func GetClusterVersion(client client.Client) (string, error) {
err := client.Get(context.TODO(), types.NamespacedName{Name: clusterVersionName}, clusterVersion)
if err != nil {
if errors.IsNotFound(err) {
return "", nil
return "4.14.0-0.okd-2023-12-01-225814", nil
}
return "", err
}
Expand Down

0 comments on commit 7826c86

Please sign in to comment.