-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: install rsync in Swift containers
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
name: Build Swift | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/actions/kolla-build/**' | ||
- 'swift/**' | ||
|
||
env: | ||
COMPONENT: swift | ||
|
||
jobs: | ||
kolla-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Kolla Build | ||
uses: ./.github/actions/kolla-build | ||
with: | ||
component: ${{ env.COMPONENT }} | ||
ghcr_token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[DEFAULT] | ||
profile = default | ||
base = rocky | ||
base_tag = 9 | ||
tag = 2023.2-rocky-9 | ||
|
||
# Container Registry Config | ||
registry = ghcr.io | ||
namespace = <registry-namespace> | ||
push = true | ||
|
||
[profiles] | ||
default = swift | ||
|
||
[swift-base] | ||
type = git | ||
location = https://opendev.org/openstack/swift | ||
reference = stable/2023.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% extends parent_template %} | ||
|
||
{% block swift_base_footer %} | ||
RUN dnf install -y rsync && dnf clean all | ||
{% endblock %} |