Skip to content

Commit

Permalink
Merge pull request #386 from sthaha/feat-kepler-0.7.8-new
Browse files Browse the repository at this point in the history
Bump kepler version to 0.7.8
  • Loading branch information
sthaha authored Apr 2, 2024
2 parents 1ee4e4f + 50bc724 commit fd00715
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,15 @@ jobs:
- uses: ./.github/compute-version
id: version

- name: reclaim space before running tests
run: |
sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
sudo rm -rf /tmp/*
sudo rm -rf /opt/hostedtoolcache/CodeQL
sudo rm -rf /opt/hostedtoolcache/Python
df -kh
- name: Run e2e tests
run: |
./tests/run-e2e.sh --ci
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GOARCH := $(shell go env GOARCH)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= $(shell cat VERSION)

KEPLER_VERSION ?=release-0.7.2
KEPLER_VERSION ?=release-0.7.8

# IMG_BASE and KEPLER_IMG_BASE are set to distinguish between Operator-specific images and Kepler-Specific images.
# IMG_BASE is used for building and pushing operator related images.
Expand Down Expand Up @@ -117,7 +117,7 @@ docs: crdoc manifests ## Generate docs.
##@ Development env
CLUSTER_PROVIDER ?= kind
LOCAL_DEV_CLUSTER_VERSION ?= main
GRAFANA_ENABLE ?= true
GRAFANA_ENABLE ?= false
PROMETHEUS_ENABLE ?= false
KIND_WORKER_NODES ?=2

Expand Down
6 changes: 3 additions & 3 deletions bundle/manifests/kepler-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metadata:
capabilities: Basic Install
categories: Monitoring
containerImage: quay.io/sustainable_computing_io/kepler-operator:0.10.0
createdAt: "2024-03-11T09:21:02Z"
createdAt: "2024-04-02T05:59:34Z"
description: 'Deploys and Manages Kepler on Kubernetes '
operators.operatorframework.io/builder: operator-sdk-v1.27.0
operators.operatorframework.io/internal-objects: |-
Expand Down Expand Up @@ -266,7 +266,7 @@ spec:
- /manager
env:
- name: RELATED_IMAGE_KEPLER
value: quay.io/sustainable_computing_io/kepler:release-0.7.2
value: quay.io/sustainable_computing_io/kepler:release-0.7.8
image: quay.io/sustainable_computing_io/kepler-operator:0.10.0
imagePullPolicy: IfNotPresent
livenessProbe:
Expand Down Expand Up @@ -376,7 +376,7 @@ spec:
name: Kepler Operator Contributors
url: https://sustainable-computing.io/
relatedImages:
- image: quay.io/sustainable_computing_io/kepler:release-0.7.2
- image: quay.io/sustainable_computing_io/kepler:release-0.7.8
name: kepler
replaces: kepler-operator.v0.9.2
version: 0.10.0
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/kepler_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
)

const (
keplerImage = "quay.io/sustainable_computing_io/kepler:release-0.7.2"
keplerImage = "quay.io/sustainable_computing_io/kepler:release-0.7.8"
)

func TestKeplerInternal_Reconciliation(t *testing.T) {
Expand Down

0 comments on commit fd00715

Please sign in to comment.