-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Cassany <[email protected]>
- Loading branch information
1 parent
95aeb1d
commit 7b54025
Showing
6 changed files
with
34 additions
and
4 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
name: "installer" | ||
category: "utils" | ||
version: "0.6.33" | ||
version: "0.6.34" |
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
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
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,21 @@ | ||
requires: | ||
- name: "base" | ||
category: "distro" | ||
version: ">=0" | ||
|
||
steps: | ||
{{ if .Values.distribution }} | ||
{{if eq .Values.distribution "opensuse" }} | ||
- zypper ar https://download.opensuse.org/repositories/security:/SELinux/openSUSE_Leap_15.3/security:SELinux.repo | ||
- zypper --gpg-auto-import-keys in -y --allow-vendor-change --allow-downgrade selinux-policy audit selinux-tools python3-policycoreutils policycoreutils-python-utils container-selinux -libsemanage1 | ||
- zypper cc | ||
{{else if eq .Values.distribution "fedora" }} | ||
- dnf install -y container-selinux selinux-policy-targeted | ||
- dnf clean all | ||
- systemctl mask selinux-autorelabel.service && systemctl mask selinux-autorelabel-mark.service | ||
{{else if eq .Values.distribution "ubuntu" }} | ||
- apt-get install -y selinux-policy-default selinux-utils | ||
- apt-get clean | ||
{{end}} | ||
{{end}} | ||
- rm -rf /.autorelabel |
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,4 @@ | ||
name: "selinux-policies" | ||
category: "system" | ||
version: "0.0.3" | ||
|