Skip to content
Draft
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 .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ jobs:
id: additional_tags
shell: bash
run: |
echo "result=$(git rev-parse --short HEAD),v1alpha1" >> $GITHUB_OUTPUT
echo "result=$(git rev-parse --short HEAD),main" >> $GITHUB_OUTPUT

- name: Install all tools
uses: ./.github/tools-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Push

on: # yamllint disable-line rule:truthy
push:
branches: [v1alpha1]
branches: [main]

jobs:
test-and-codecov:
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
id: additional_tags
shell: bash
run: |
echo "result=$(git rev-parse --short HEAD),v1alpha1" >> $GITHUB_OUTPUT
echo "result=$(git rev-parse --short HEAD),main" >> $GITHUB_OUTPUT

- name: Build and Publish Images to External registry
uses: ./.github/publish-images
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ kubectl apply -k config/samples/
You can use the pre-built image from quay.io:

```sh
make deploy OPERATOR_IMG=quay.io/sustainable_computing_io/kepler-operator:v1alpha1
make deploy OPERATOR_IMG=quay.io/sustainable_computing_io/kepler-operator:main
kubectl apply -k config/samples/
```

Expand Down Expand Up @@ -100,7 +100,7 @@ To completely remove the operator and all related resources:

## 📚 Developer Documentation

[Developer documentation](https://github.com/sustainable-computing-io/kepler-operator/tree/v1alpha1/docs/developer) is available for those who want to contribute to the codebase or understand its internals.
[Developer documentation](https://github.com/sustainable-computing-io/kepler-operator/tree/main/docs/developer) is available for those who want to contribute to the codebase or understand its internals.

## 🤝 Contributing

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 @@ -32,7 +32,7 @@ metadata:
capabilities: Seamless Upgrades
categories: Monitoring
containerImage: quay.io/sustainable_computing_io/kepler-operator:0.20.0
createdAt: "2025-08-27T13:53:21Z"
createdAt: "2025-09-10T10:06:57Z"
description: Deploys and Manages Kepler on Kubernetes
operators.operatorframework.io/builder: operator-sdk-v1.39.1
operators.operatorframework.io/internal-objects: |-
Expand Down Expand Up @@ -81,8 +81,8 @@ spec:
MUST be enabled in your cluster.

### Documentation
* [User Documentation](https://github.com/sustainable-computing-io/kepler-operator/blob/v1alpha1/README.md)
* [Developer Guide](https://github.com/sustainable-computing-io/kepler-operator/tree/v1alpha1/docs/developer)
* [User Documentation](https://github.com/sustainable-computing-io/kepler-operator/blob/main/README.md)
* [Developer Guide](https://github.com/sustainable-computing-io/kepler-operator/tree/main/docs/developer)

### Contributing
* [Report Bugs](https://github.com/sustainable-computing-io/kepler-operator/issues/new?template=bug_report.md) - Found a bug? Let us know!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ spec:
MUST be enabled in your cluster.

### Documentation
* [User Documentation](https://github.com/sustainable-computing-io/kepler-operator/blob/v1alpha1/README.md)
* [Developer Guide](https://github.com/sustainable-computing-io/kepler-operator/tree/v1alpha1/docs/developer)
* [User Documentation](https://github.com/sustainable-computing-io/kepler-operator/blob/main/README.md)
* [Developer Guide](https://github.com/sustainable-computing-io/kepler-operator/tree/main/docs/developer)

### Contributing
* [Report Bugs](https://github.com/sustainable-computing-io/kepler-operator/issues/new?template=bug_report.md) - Found a bug? Let us know!
Expand Down
Loading