Skip to content
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

Fix Instascale Version #258

Merged
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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ VERSION ?= v0.0.0-dev
BUNDLE_VERSION ?= $(VERSION:v%=%)

# INSTASCALE_VERSION defines the default version of the InstaScale controller
INSTASCALE_VERSION ?= v.0.0.7
INSTASCALE_VERSION ?= v0.0.7

# MCAD_VERSION defines the default version of the MCAD controller
MCAD_VERSION ?= v1.34.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CodeFlare Stack Compatibility Matrix
| CodeFlare Operator | v0.2.0 |
| Multi-Cluster App Dispatcher | v1.34.0 |
| CodeFlare-SDK | v0.7.0 |
| InstaScale | v.0.0.7 |
| InstaScale | v0.0.7 |
| KubeRay | v0.5.0 |
<!-- Compatibility Matrix end -->

Expand Down
2 changes: 1 addition & 1 deletion controllers/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ package controllers

const (
MCADImage = "quay.io/project-codeflare/mcad-controller:release-v1.34.0"
InstaScaleImage = "quay.io/project-codeflare/instascale-controller:v.0.0.7"
InstaScaleImage = "quay.io/project-codeflare/instascale-controller:v0.0.7"
)
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
- name: instascale
args:
- "--configs-namespace=default"
image: quay.io/project-codeflare/instascale-controller:v.0.0.7
image: quay.io/project-codeflare/instascale-controller:v0.0.7
resources:
limits:
cpu: '2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
- name: instascale
args:
- "--configs-namespace=default"
image: quay.io/project-codeflare/instascale-controller:v.0.0.7
image: quay.io/project-codeflare/instascale-controller:v0.0.7
resources:
limits:
cpu: '1'
Expand Down
Loading