Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
7296fa88
Unverified
Commit
7296fa88
authored
Dec 03, 2024
by
Derek Nola
Committed by
GitHub
Dec 03, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix leap install test (#11379)
Signed-off-by:
Derek Nola
<
derek.nola@suse.com
>
parent
5bb3d82e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Vagrantfile
tests/install/opensuse-leap/Vagrantfile
+2
-1
No files found.
tests/install/opensuse-leap/Vagrantfile
View file @
7296fa88
...
@@ -18,7 +18,8 @@ Vagrant.configure("2") do |config|
...
@@ -18,7 +18,8 @@ Vagrant.configure("2") do |config|
test
.
vm
.
provision
"add-bin-path"
,
type:
"shell"
,
inline:
"echo
\"
export PATH=/usr/local/bin:
\$
PATH
\"
>> ~/.bashrc"
test
.
vm
.
provision
"add-bin-path"
,
type:
"shell"
,
inline:
"echo
\"
export PATH=/usr/local/bin:
\$
PATH
\"
>> ~/.bashrc"
test
.
vm
.
provision
'k3s-upload'
,
type:
'file'
,
run:
'always'
,
source:
ENV
[
'TEST_INSTALL_SH'
],
destination:
'install.sh'
test
.
vm
.
provision
'k3s-upload'
,
type:
'file'
,
run:
'always'
,
source:
ENV
[
'TEST_INSTALL_SH'
],
destination:
'install.sh'
# /sbin/apparmor_parser is needed by the 1.21 kubelet if the value of /sys/module/apparmor/parameters/enabled is Y
# /sbin/apparmor_parser is needed by the 1.21 kubelet if the value of /sys/module/apparmor/parameters/enabled is Y
test
.
vm
.
provision
'k3s-prepare'
,
type:
'shell'
,
run:
'once'
,
inline:
'zypper install -y apparmor-parser'
# Leap 15.6+ VM images are missing procps for some reason.
test
.
vm
.
provision
'k3s-prepare'
,
type:
'shell'
,
run:
'once'
,
inline:
'zypper install -y apparmor-parser procps'
test
.
vm
.
provision
'k3s-install'
,
type:
'k3s'
,
run:
'once'
do
|
k3s
|
test
.
vm
.
provision
'k3s-install'
,
type:
'k3s'
,
run:
'once'
do
|
k3s
|
k3s
.
installer_url
=
'file:///home/vagrant/install.sh'
k3s
.
installer_url
=
'file:///home/vagrant/install.sh'
k3s
.
args
=
%w[server]
k3s
.
args
=
%w[server]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment