Skip to content

Update operator to 0.0.4 #127

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

Merged
merged 3 commits into from
Jun 9, 2023
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 @@ -10,7 +10,7 @@ PREVIOUS_VERSION ?= 0.0.3
VERSION ?= 0.0.3-dev

# INSTASCALE_VERSION defines the default version of the InstaScale controller
INSTASCALE_VERSION ?= v0.0.3
INSTASCALE_VERSION ?= v0.0.4

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
1 change: 1 addition & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
approvers:
- anishasthana
- astefanutti
- jbusche
- kpostoffice
- maxusmusti
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# codeflare-operator
Operator for installation and lifecycle management of CodeFlare distributed workload stack, starting with MCAD and InstaScale

CodeFlare Stack Compatibility Matrix

| Component | Version |
|------------------------------|---------|
| CodeFlare Operator | v0.0.4 |
| Multi-Cluster App Dispatcher | v1.31.0 |
| CodeFlare-SDK | v0.4.4 |
| InstaScale | v0.0.4 |
| KubeRay | v0.5.0 |
2 changes: 1 addition & 1 deletion config/crd/mcad/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resources:
- github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=main
- github.com/project-codeflare/multi-cluster-app-dispatcher/config/crd?ref=release-v1.31.0
2 changes: 1 addition & 1 deletion config/internal/mcad/deployment.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
envFrom:
- configMapRef:
name: mcad-{{.Name}}-config
image: 'quay.io/project-codeflare/mcad-controller:release-v1.29.57'
image: 'quay.io/project-codeflare/mcad-controller:release-v1.31.0'
imagePullPolicy: Always
ports:
- name: https
Expand Down
2 changes: 1 addition & 1 deletion controllers/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ package controllers
// ***********************

const (
InstaScaleImage = "quay.io/project-codeflare/instascale-controller:v0.0.3"
InstaScaleImage = "quay.io/project-codeflare/instascale-controller:v0.0.4"
)
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:v0.0.3
image: quay.io/project-codeflare/instascale-controller:v0.0.4
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:v0.0.3
image: quay.io/project-codeflare/instascale-controller:v0.0.4
resources:
limits:
cpu: '1'
Expand Down