Skip to content

Commit

Permalink
Merge branch 'master' into silence_strong_migration_warning
Browse files Browse the repository at this point in the history
  • Loading branch information
felixsch authored Oct 26, 2023
2 parents c91b7df + 05a6883 commit 8c3b9fe
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ GEM
fuubar (2.5.1)
rspec-core (~> 3.0)
ruby-progressbar (~> 1.4)
gettext (3.4.4)
gettext (3.4.9)
erubi
locale (>= 2.0.5)
prime
Expand Down
10 changes: 9 additions & 1 deletion PACKAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ Note: Look below for direction on publishing to registry.
```
2. On github, submit a release for the tag. See https://help.github.com/en/articles/creating-releases for assistance.
#### Helm chart update process
RMT helm chart is found [here](https://github.com/SUSE/helm-charts.git).
Edit `rmt-helm/Chart.yaml` to update the chart version (`version`) and rmt-version (`appVersion`). The `BuildTag` version needs to be updated. Look at this example [pull-request](https://github.com/SUSE/helm-charts/pull/5) bumping the version.
[Bruno Leon](mailto:[email protected]) is the maintainer and point of contact for rmt-helm.
#### Submit Requests to openSUSE Factory and SLES
To get a maintenance request accepted, each changelog entry needs to have at
Expand Down Expand Up @@ -108,4 +116,4 @@ After your requests have been accepted, they still have to pass maintenance test

SUSE registry houses the rmt-server docker image. The image is built on OBS/IBS, project for SLES 15sp4 based distributions can be found [here](https://build.opensuse.org/package/show/devel:BCI:SLE-15-SP4/rmt-server-image).

At the moment of writing, the publishing process has to be done manually. This can be achieved my reaching out to the Auto-Build team (only available internally).
At the moment of writing, the publishing process has to be done manually. This can be achieved by reaching out to the Auto-Build team (only available internally).
5 changes: 5 additions & 0 deletions package/obs/rmt-server.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Oct 12 11:00:00 UTC 2023 - Zuzana Petrova <[email protected]>

- rmt-client-setup-res script: fix for CentOS8 clients (bsc#1214709)

-------------------------------------------------------------------
Wed Oct 04 13:23:00 UTC 2023 - Felix Schnizlein <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion public/tools/rmt-client-setup-res
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ dnf config-manager --disable $(dnf repolist -q | awk '{ print $1 }' | grep -v re

# on Centos /usr/share/redhat-release is a file, on RHEL and RES it is a directory
# so this is CentOS only workaround
if [ -f /usr/share/redhat-release ]; then
if [ -f /usr/share/redhat-release ] | [ -h /usr/share/redhat-release ]; then
rm -f /usr/share/redhat-release;
fi

Expand Down

0 comments on commit 8c3b9fe

Please sign in to comment.