https://github.com/rhobs/rhobs-konflux-thanos-operator
https://github.com/rhobs/rhobs-konflux-thanos-operator
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rhobs/rhobs-konflux-thanos-operator
- Owner: rhobs
- Created: 2025-02-17T10:16:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-02T00:29:23.000Z (9 months ago)
- Last Synced: 2025-10-02T02:39:01.859Z (9 months ago)
- Language: Shell
- Size: 57.6 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rhobs-konflux-thanos-operator
Use this repository to deploy thanos-operator built with Konflux
## Update submodule to specific tag
Update the submodule to the latest commit:
```bash
cd path/to/submodule
git fetch --tags
git checkout tag_name
cd ..
git add path/to/submodule
git commit -m "Updated submodule to tag_name"
git push
```
or use make target `make update-submodule`
## Update submodule to latest commit on main
```bash
git submodule update --init thanos-operator
git submodule update --remote thanos-operator
git add .
git commit -m "Updated submodule to "
git push
```