Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Commit

Permalink
chore: update to use latest controllers and ocm (#204)
Browse files Browse the repository at this point in the history
## Description

```
➜  mpas git:(update-components-1) ✗ ./bin/mpas bootstrap github --owner skarlso --repository=mpas-test-project --personal --registry ghcr.io/skarlso/mpas-bootstrap
Running mpas bootstrap ...
 ✓   Preparing Management repository mpas-test-project
 ✓   Fetching bootstrap component from ghcr.io/skarlso/mpas-bootstrap
 ✓   Installing flux with version v2.1.2
 ✓   Installing cert-manager with version v1.13.2
 ✓   Reconciling bootstrap components
 ✓   Waiting for cert-manager to be available
 ✓   Generating external-secrets-operator manifest with version v0.9.9
 ✓   Generating git-controller manifest with version v0.12.0
 ✓   Generating mpas-product-controller manifest with version v0.11.0
 ✓   Generating mpas-project-controller manifest with version v0.6.0
 ✓   Generating ocm-controller manifest with version v0.19.0
 ✓   Generating replication-controller manifest with version v0.13.0
 ✓   Generating certificate manifests
 ✓   Reconciling component manifests
 ✓   Waiting for components to be ready

Bootstrap completed successfully!

```

So far so go. I'm going through the demo now, and also update the go
modules in MPAS.


## What type of PR is this? (check all applicable)

- [ ] 🍕 Feature
- [ ] 🐛 Bug Fix
- [ ] 📝 Documentation Update
- [ ] 🎨 Style
- [ ] 🧑‍💻 Code Refactor
- [ ] 🔥 Performance Improvements
- [ ] ✅ Test
- [ ] 🤖 Build
- [ ] 🔁 CI
- [ ] 📦 Chore (Release)
- [ ] ⏩ Revert

## Related Tickets & Documents

<!-- 
Please use this format link issue numbers: Fixes #123

https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword
-->
- Related Issue # (issue)
- Closes # (issue)
- Fixes # (issue)
> Remove if not applicable

## Screenshots

<!-- Visual changes require screenshots -->


## Added tests?

- [ ] 👍 yes
- [ ] 🙅 no, because they aren't needed
- [ ] 🙋 no, because I need help
- [ ] Separate ticket for tests # (issue/pr)

Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration

## Added e2e-tests?

- [ ] 👍 yes
- [ ] 🙅 no, because they aren't needed
- [ ] 🙋 no, because I need help
- [ ] Separate ticket for e2e-tests

## Added to documentation?

- [ ] 📜 README.md
- [ ] 🙅 no documentation needed

## Checklist:

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules
  • Loading branch information
Skarlso authored Mar 25, 2024
1 parent 6775312 commit 2e80e5c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions internal/env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ const (
// DefaultExternalSecretsVer is the default version of the external secrets component.
DefaultExternalSecretsVer = "v0.9.9"
// DefaultOcmControllerVer is the default version of the ocm-controller component.
DefaultOcmControllerVer = "v0.18.1"
DefaultOcmControllerVer = "v0.19.0"
// DefaultGitControllerVer is the default version of the git-controller component.
DefaultGitControllerVer = "v0.11.1"
DefaultGitControllerVer = "v0.12.0"
// DefaultReplicationVer is the default version of the replication-controller component.
DefaultReplicationVer = "v0.12.2"
DefaultReplicationVer = "v0.13.0"
// DefaultMpasProductControllerVer is the default version of the mpas-product-controller component.
DefaultMpasProductControllerVer = "v0.10.1"
DefaultMpasProductControllerVer = "v0.11.0"
// DefaultMpasProjectControllerVer is the default version of the mpas-project-controller component.
DefaultMpasProjectControllerVer = "v0.5.0"
DefaultMpasProjectControllerVer = "v0.6.0"
// DefaultOcmCliVer is the default version of the ocm-cli component.
DefaultOcmCliVer = "v0.4.1"
DefaultOcmCliVer = "v0.8.0"
)

const (
Expand Down

0 comments on commit 2e80e5c

Please sign in to comment.