-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from fedora-modularity/devel
Merging devel into master branch
- Loading branch information
Showing
123 changed files
with
5,308 additions
and
977 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,7 @@ | ||
[submodule "tools/check_modulemd"] | ||
path = tools/check_modulemd | ||
url = https://github.com/fedora-modularity/check_modulemd | ||
|
||
[submodule "build_manpages"] | ||
path = build_manpages | ||
url = https://github.com/praiskup/build_manpages |
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 +1 @@ | ||
0.7.3-1 ./ | ||
0.7.8-1 ./ |
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
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
Submodule build_manpages
added at
44d154
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,8 @@ | ||
Linters | ||
================= | ||
|
||
MTF provides a set of linters for checking containers | ||
|
||
Dockerfile linters | ||
~~~~~~~~~~~~~~~~~~ | ||
|
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,7 @@ | ||
document: meta-test | ||
version: 1 | ||
name: etcd | ||
module: | ||
docker: | ||
start: "docker run -it -d" | ||
container: registry.fedoraproject.org/f26/etcd |
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,7 @@ | ||
document: meta-test | ||
version: 1 | ||
name: flannel | ||
module: | ||
docker: | ||
start: "docker run -it -d" | ||
container: registry.fedoraproject.org/f26/flannel |
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,7 @@ | ||
document: meta-test | ||
version: 1 | ||
name: etcd | ||
module: | ||
docker: | ||
start: "docker run -it -d" | ||
container: registry.access.redhat.com/rhscl/nginx-18-rhel7 |
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,7 @@ | ||
document: meta-test | ||
version: 1 | ||
name: etcd | ||
module: | ||
docker: | ||
start: "docker run -it -d -e POSTGRESQL_USER=test -e POSTGRESQL_PASSWORD=testt -e POSTGRESQL_DATABASE=db" | ||
container: registry.access.redhat.com/rhscl/postgresql-95-rhel7 |
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,59 @@ | ||
FROM registry.fedoraproject.org/fedora:26 | ||
LABEL maintainer "Tomas Tomecek \"[email protected]\"" | ||
|
||
ENV NAME=tools VERSION=0 RELEASE=2 ARCH=x86_64 | ||
LABEL com.redhat.component="$NAME" \ | ||
name="$FGC/$NAME" \ | ||
version="$VERSION" \ | ||
release="$RELEASE.$DISTTAG" \ | ||
architecture="$ARCH" \ | ||
run="docker run -it --name NAME --privileged --ipc=host --net=host --pid=host -e HOST=/host -e NAME=NAME -e IMAGE=IMAGE -v /run:/run -v /var/log:/var/log -v /etc/machine-id:/etc/machine-id -v /etc/localtime:/etc/localtime -v /:/host IMAGE" \ | ||
summary="container with all the management tools you miss in Atomic Host" | ||
|
||
# vim-minimal conflicts with vim-enhanced | ||
RUN dnf remove -y vim-minimal && dnf install -y \ | ||
bash-completion \ | ||
bc \ | ||
bind-utils \ | ||
blktrace \ | ||
crash \ | ||
e2fsprogs \ | ||
ethtool \ | ||
file \ | ||
gcc \ | ||
gdb \ | ||
git-core \ | ||
glibc-utils \ | ||
gomtree \ | ||
htop \ | ||
hwloc \ | ||
iotop \ | ||
iproute \ | ||
iputils \ | ||
less \ | ||
ltrace \ | ||
mailx \ | ||
net-tools \ | ||
netsniff-ng \ | ||
nmap-ncat \ | ||
numactl \ | ||
numactl-devel \ | ||
parted \ | ||
pciutils \ | ||
perf \ | ||
procps-ng \ | ||
psmisc \ | ||
screen \ | ||
sos \ | ||
strace \ | ||
sysstat \ | ||
tcpdump \ | ||
tmux \ | ||
vim-enhanced \ | ||
xfsprogs \ | ||
&& dnf clean all | ||
|
||
# FIXME: current go-md2man can't convert tables :< | ||
COPY ./root/ / | ||
|
||
CMD ["/usr/bin/bash"] |
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,7 @@ | ||
document: meta-test | ||
version: 1 | ||
name: tools | ||
module: | ||
docker: | ||
start: "docker run -it -d" | ||
container: candidate-registry.fedoraproject.org/f26/tools:latest |
Oops, something went wrong.