Compare commits
17 Commits
feature-ne
...
new_struct
Author | SHA1 | Date | |
---|---|---|---|
9c460b363e | |||
28c0fc03cf | |||
f8496320dd | |||
8cdee0b278 | |||
8cc6581c18 | |||
4bef9210e6 | |||
6944bb7158 | |||
e60d4a6450 | |||
d31ae53893 | |||
d3a5f23958 | |||
f55f03f91d | |||
fa20517058 | |||
ad9a468aa6 | |||
86fba1814f | |||
28b280556b | |||
deee1706de | |||
a59901c4bf |
@ -6,54 +6,71 @@
|
|||||||
#$4 - ${{ needs.build-process.outputs.repo }}
|
#$4 - ${{ needs.build-process.outputs.repo }}
|
||||||
#$5 - ${{ gitea.workspace }}
|
#$5 - ${{ gitea.workspace }}
|
||||||
|
|
||||||
|
BR=${1:-"p10"}
|
||||||
|
ORG=${2:-"base"}
|
||||||
|
URL=${3:-"gitea.basealt.ru"}
|
||||||
|
REPO=${4:-"alt"}
|
||||||
|
WS=${5:-"image-forge"}
|
||||||
|
|
||||||
errors=''
|
errors=''
|
||||||
haserr=false
|
haserr=false
|
||||||
for IM in $(ls $5/org/$2/ | xargs)
|
for IM in $(ls $WS/org/$ORG/ | xargs)
|
||||||
do
|
do
|
||||||
echo "image=$IM"
|
echo "image=$IM"
|
||||||
if test -f $5/org/$2/$IM/test
|
imgpath="$REPO/$BR/$IM:$BR"
|
||||||
|
command=''
|
||||||
|
testpath="$WS/org/$ORG/$IM/test.yaml"
|
||||||
|
if test -f $testpath
|
||||||
then
|
then
|
||||||
test=$(cat $5/org/$2/$IM/test)
|
entrypoint=''
|
||||||
else test=''
|
testep=$(cat $testpath | yq '.entrypoint' -r 2> /dev/null)
|
||||||
fi
|
if [[ $testep != '' ]]; then entrypoint="--entrypoint=\"$testep\""; fi
|
||||||
|
|
||||||
echo "test script=$test"
|
testcom=$(cat $testpath | yq '.command' -r 2> /dev/null)
|
||||||
imgpath="$2/$IM:$1"
|
if [[ $testcom != '' ]]
|
||||||
|
then command="podman run --rm $entrypoint $URL/$imgpath -c \"$testcom\""
|
||||||
if [[ $2 == 'k8s' ]]
|
else echo "test command is not found"
|
||||||
then imgpath="$2-$1/$IM:latest"
|
|
||||||
fi
|
fi
|
||||||
|
else echo "test file is not found"
|
||||||
command="echo empty_command"
|
|
||||||
if [[ $test != '' ]]; then
|
|
||||||
command="podman run --rm --entrypoint=\"/bin/sh\" $3/$imgpath -c \"$test\""
|
|
||||||
else
|
|
||||||
if [[ $IM = 'distroless-true' ]]; then
|
|
||||||
command="podman run --rm $3/$imgpath \"true\""
|
|
||||||
fi
|
fi
|
||||||
if [[ $IM = 'distroless-gotop' ]]; then
|
echo "result test command: $command"
|
||||||
command="podman run --rm $3/$imgpath \"--version\""
|
|
||||||
fi
|
|
||||||
if [[ $IM = 'flannel-cni-plugin' ]]; then
|
|
||||||
command="podman run --rm $3/$imgpath \"/flannel\""
|
|
||||||
fi
|
|
||||||
if [[ $IM = 'pause' ]]; then
|
|
||||||
command="podman run --rm $3/$imgpath \"/pause\" \"-v\""
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
echo $command
|
|
||||||
eval $command 2>$IM.log || haserr=true
|
eval $command 2>$IM.log || haserr=true
|
||||||
|
|
||||||
echo "podman rmi --all"
|
if [ "$haserr" = false ]
|
||||||
podman rmi --all
|
|
||||||
|
|
||||||
if [ "$haserr" = true ]
|
|
||||||
then
|
then
|
||||||
|
echo "start change tag for $IM"
|
||||||
|
if [[ $ORG != 'base' ]]
|
||||||
|
then
|
||||||
|
package=$(podman images --filter reference=$URL/$imgpath --format='{{ json .Labels }}' | jq '."org.opencontainers.image.title"' -r 2> /dev/null)
|
||||||
|
if [[ $package != '' ]]
|
||||||
|
then
|
||||||
|
tag=$(podman run --rm --entrypoint="/bin/sh" $URL/$imgpath -c "rpm -qa --qf \"%{VERSION}\n\" $package" 2> /dev/null)
|
||||||
|
else
|
||||||
|
echo "not found package name in images labels"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
then tag=$(date +"%Y%m%d")
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $tag != '' ]]
|
||||||
|
then
|
||||||
|
skopeo copy -a docker://$URL/$imgpath:$BR docker://$URL/$imgpath:$tag
|
||||||
|
scopeo delete docker://$URL/$imgpath:$BR
|
||||||
|
echo "tag is updated"
|
||||||
|
else echo "new tag is empty and is not sent to repository"
|
||||||
|
fi
|
||||||
|
|
||||||
|
else
|
||||||
if [[ $(cat $IM.log) != '' ]]
|
if [[ $(cat $IM.log) != '' ]]
|
||||||
then errors="TEST ERROR OF IMAGE $IM: $(cat $IM.log); $errors"
|
then errors="TEST ERROR OF IMAGE $IM: $(cat $IM.log); $errors"
|
||||||
else errors="TEST ERROR OF IMAGE $IM: test returned empty error, but exit status was nozero; $errors"
|
else errors="TEST ERROR OF IMAGE $IM: test returned empty error, but exit status was nozero; $errors"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "podman rmi --all"
|
||||||
|
podman rmi --all
|
||||||
|
|
||||||
|
fi
|
||||||
haserr=false
|
haserr=false
|
||||||
done
|
done
|
||||||
|
|
||||||
|
142
.gitea/workflows/wf_full_p10.yaml
Normal file
142
.gitea/workflows/wf_full_p10.yaml
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
name: Full building alt images
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*_*'
|
||||||
|
tags-ignore:
|
||||||
|
- '*_k8s'
|
||||||
|
- 'sisyphus_*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-process:
|
||||||
|
runs-on: alt-p10
|
||||||
|
outputs:
|
||||||
|
branch: ${{ env.BRANCH }}
|
||||||
|
org: ${{ env.ORG }}
|
||||||
|
url: ${{ env.URL }}
|
||||||
|
repo: ${{ env.REPO }}
|
||||||
|
buildres: ${{ steps.build-script.outcome }}
|
||||||
|
steps:
|
||||||
|
- name: Check workspace
|
||||||
|
run: |
|
||||||
|
repourl=$(echo $GU | cut -d '/' -f 3)
|
||||||
|
echo "URL=$repourl" >> ${GITHUB_ENV}
|
||||||
|
echo $repourl
|
||||||
|
reponame=$(echo $GR | cut -d '/' -f 1)
|
||||||
|
echo "REPO=$reponame" >> ${GITHUB_ENV}
|
||||||
|
echo $reponame
|
||||||
|
env:
|
||||||
|
GU: ${{ gitea.server_url }}
|
||||||
|
GR: ${{ gitea.repository }}
|
||||||
|
- name: Set repo for c10f2 (Temporary)
|
||||||
|
if: ${{ contains(github.ref_name, 'c10f2') }}
|
||||||
|
run: |
|
||||||
|
echo "event tag=${{ github.ref_name }}"
|
||||||
|
echo "10.4.0.3 update.altsp.su" >> /etc/hosts
|
||||||
|
echo "cat /etc/hosts"
|
||||||
|
cat /etc/hosts
|
||||||
|
- name: Update apt
|
||||||
|
uses: actions/init-alt-env@v1
|
||||||
|
- name: Install requires
|
||||||
|
run: |
|
||||||
|
echo "apt-get install -y python3-module-tomli python3-module-jinja2 podman buildah jq curl"
|
||||||
|
apt-get install -y python3-module-tomli python3-module-jinja2 podman buildah jq curl
|
||||||
|
echo "apt-get install -y qemu-user-static-binfmt-aarch64 qemu-user-static-binfmt-arm qemu-user-static-binfmt-ppc"
|
||||||
|
apt-get install -y qemu-user-static-binfmt-aarch64 qemu-user-static-binfmt-arm qemu-user-static-binfmt-ppc
|
||||||
|
- name: Check out current repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Parse target branch and tag from events context, save to env
|
||||||
|
env:
|
||||||
|
EV: ${{ toJson(gitea.event) }}
|
||||||
|
run: |
|
||||||
|
echo $EV | jq '.ref' -r | sed "s/refs\/tags\//BRANCH=/g" | cut -d '_' -f 1
|
||||||
|
echo $EV | jq '.ref' -r | sed "s/refs\/tags\//BRANCH=/g" | cut -d '_' -f 1 >> ${GITHUB_ENV}
|
||||||
|
org=$(echo $EV | jq '.ref' -r | sed 's/refs\/tags\///g' | cut -d '_' -f 2)
|
||||||
|
echo "ORG=$org" >> ${GITHUB_ENV}
|
||||||
|
echo "ORG=$org"
|
||||||
|
- name: Login podman gitea
|
||||||
|
run: |
|
||||||
|
echo "podman login ${{ env.URL }}"
|
||||||
|
podman login --username $P_USER --password $P_PASS ${{ env.URL }}
|
||||||
|
env:
|
||||||
|
P_USER: ${{ secrets.PODMAN_USER }}
|
||||||
|
P_PASS: ${{ secrets.PODMAN_PASS }}
|
||||||
|
- name: Run standart building script
|
||||||
|
id: build-script
|
||||||
|
run: |
|
||||||
|
build_args="-b $BR -o $ORG --skip-images base/distroless-devel --overwrite-organization $BR --registry $URL/$BR"
|
||||||
|
echo "build.py $build_args"
|
||||||
|
${{ gitea.workspace }}/build.py $build_args
|
||||||
|
env:
|
||||||
|
ORG: ${{ env.ORG }}
|
||||||
|
BR: ${{ env.BRANCH }}
|
||||||
|
continue-on-error: true
|
||||||
|
- name: Send notification if build crashed
|
||||||
|
if: ${{ steps.build-script.outcome != 'success' }}
|
||||||
|
run: |
|
||||||
|
issueid=1
|
||||||
|
body="Building images finish with some errors."
|
||||||
|
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s
|
||||||
|
echo "notification about test error is sent to issue $issueid"
|
||||||
|
env:
|
||||||
|
T: ${{ secrets.TOKEN }}
|
||||||
|
BR: ${{ env.BRANCH }}
|
||||||
|
URL: ${{ gitea.server_url }}
|
||||||
|
REPO: ${{ env.REPO }}
|
||||||
|
- name: Delete event tag
|
||||||
|
run: |
|
||||||
|
tagname=$(echo $EV | jq '.ref' -r | sed "s/refs\/tags\///g")
|
||||||
|
curl -X 'DELETE' "$URL/api/v1/repos/$REPO/image-forge/tags/$tagname?token=$T" -H 'accept: application/json' -s
|
||||||
|
echo "tag $tagname is deleted"
|
||||||
|
env:
|
||||||
|
T: ${{ secrets.TOKEN }}
|
||||||
|
BR: ${{ env.BRANCH }}
|
||||||
|
URL: ${{ gitea.server_url }}
|
||||||
|
REPO: ${{ env.REPO }}
|
||||||
|
EV: ${{ toJson(gitea.event) }}
|
||||||
|
test-process:
|
||||||
|
needs: build-process
|
||||||
|
if: ${{ needs.build-process.outputs.buildres == 'success' }}
|
||||||
|
runs-on: alt-p10
|
||||||
|
steps:
|
||||||
|
- name: Update apt
|
||||||
|
uses: actions/init-alt-env@v1
|
||||||
|
- name: Install requires
|
||||||
|
run: |
|
||||||
|
echo "apt-get install -y python3-module-tomli python3-module-jinja2 podman buildah skopeo jq yq curl"
|
||||||
|
apt-get install -y python3-module-tomli python3-module-jinja2 podman buildah jq curl
|
||||||
|
- name: Check out current repo
|
||||||
|
uses: https://gitea.com/actions/checkout@v4
|
||||||
|
- name: Login podman gitea
|
||||||
|
run: |
|
||||||
|
echo "podman login ${{ env.URL }}"
|
||||||
|
podman login --username $P_USER --password $P_PASS ${{ needs.build-process.outputs.url }}
|
||||||
|
env:
|
||||||
|
P_USER: ${{ secrets.PODMAN_USER }}
|
||||||
|
P_PASS: ${{ secrets.PODMAN_PASS }}
|
||||||
|
- name: Test images and update tags
|
||||||
|
id: test-script
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
$WS/.gitea/workflows/testscript $BR $ORG $URL $REPO $WS
|
||||||
|
cat haserr.log >> ${GITHUB_ENV}
|
||||||
|
echo "test process finished"
|
||||||
|
env:
|
||||||
|
BR: ${{ needs.build-process.outputs.branch }}
|
||||||
|
ORG: ${{ needs.build-process.outputs.org }}
|
||||||
|
URL: ${{ needs.build-process.outputs.url }}
|
||||||
|
REPO: ${{ needs.build-process.outputs.repo }}
|
||||||
|
WS: ${{ gitea.workspace }}
|
||||||
|
- name: Send notification if test crashed
|
||||||
|
if: ${{ env.ERR == 'true' || steps.test-script.outcome == 'failure' }}
|
||||||
|
run: |
|
||||||
|
issueid=1
|
||||||
|
errors=$(cat errors.log)
|
||||||
|
body="Testing images finish with some errors. $errors"
|
||||||
|
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s
|
||||||
|
echo "notification about test error is sent to issue $issueid"
|
||||||
|
env:
|
||||||
|
T: ${{ secrets.TOKEN }}
|
||||||
|
BR: ${{ needs.build-process.outputs.branch }}
|
||||||
|
URL: ${{ gitea.server_url }}
|
||||||
|
REPO: ${{ needs.build-process.outputs.repo }}
|
@ -55,7 +55,6 @@ jobs:
|
|||||||
id: build-script
|
id: build-script
|
||||||
run: |
|
run: |
|
||||||
build_args="-b $BR -o $ORG --skip-images alt/distroless-devel"
|
build_args="-b $BR -o $ORG --skip-images alt/distroless-devel"
|
||||||
if [[ $BR == 'sisyphus' ]]; then build_args="$build_args --skip-arches arm"; fi
|
|
||||||
if [[ $ORG == 'k8s' ]]; then build_args="$build_args --tags tags.toml --overwrite-organization $ORG-$BR --skip-images k8s/kube-apiserver k8s/kube-controller-manager k8s/kube-proxy k8s/kube-scheduler"; fi
|
if [[ $ORG == 'k8s' ]]; then build_args="$build_args --tags tags.toml --overwrite-organization $ORG-$BR --skip-images k8s/kube-apiserver k8s/kube-controller-manager k8s/kube-proxy k8s/kube-scheduler"; fi
|
||||||
echo "build.py $build_args"
|
echo "build.py $build_args"
|
||||||
${{ gitea.workspace }}/build.py $build_args
|
${{ gitea.workspace }}/build.py $build_args
|
||||||
@ -66,12 +65,10 @@ jobs:
|
|||||||
- name: Send notification if build crashed
|
- name: Send notification if build crashed
|
||||||
if: ${{ steps.build-script.outcome != 'success' }}
|
if: ${{ steps.build-script.outcome != 'success' }}
|
||||||
run: |
|
run: |
|
||||||
issueid=$(curl -X 'GET' "$URL/api/v1/repos/$REPO/image-forge/issues?state=open&labels=building&type=issues&page=1&limit=1&token=$T" -H 'accept: application/json' -s | jq '.[].number' -r)
|
issueid=1
|
||||||
if [[ $issueid != '' ]]; then \
|
body="Building images finish with some errors."
|
||||||
body="Building images finish with some errors."; \
|
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s
|
||||||
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s;\
|
echo "notification about test error is sent to issue $issueid"
|
||||||
echo "notification about test error is sent to issue $issueid"; \
|
|
||||||
else echo "no issue to send notification"; fi
|
|
||||||
env:
|
env:
|
||||||
T: ${{ secrets.TOKEN }}
|
T: ${{ secrets.TOKEN }}
|
||||||
BR: ${{ env.BRANCH }}
|
BR: ${{ env.BRANCH }}
|
||||||
@ -117,13 +114,11 @@ jobs:
|
|||||||
- name: Send notification if test crashed
|
- name: Send notification if test crashed
|
||||||
if: ${{ env.ERR == 'true' || steps.test-script.outcome == 'failure' }}
|
if: ${{ env.ERR == 'true' || steps.test-script.outcome == 'failure' }}
|
||||||
run: |
|
run: |
|
||||||
issueid=$(curl -X 'GET' "$URL/api/v1/repos/$REPO/image-forge/issues?state=open&labels=building&type=issues&page=1&limit=1&token=$T" -H 'accept: application/json' -s | jq '.[].number' -r)
|
issueid=1
|
||||||
if [[ $issueid != '' ]]; then \
|
errors=$(cat errors.log)
|
||||||
errors=$(cat errors.log); \
|
body="Testing images finish with some errors. $errors"
|
||||||
body="Testing images finish with some errors. $errors"; \
|
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s
|
||||||
curl -X 'POST' "$URL/api/v1/repos/$REPO/image-forge/issues/$issueid/comments?token=$T" -H 'accept: application/json' -H 'Content-Type: application/json' -d "{ \"body\": \"$body\" }" -s; \
|
echo "notification about test error is sent to issue $issueid"
|
||||||
echo "notification about test error is sent to issue $issueid"; \
|
|
||||||
else echo "no issue to send notification"; fi
|
|
||||||
env:
|
env:
|
||||||
T: ${{ secrets.TOKEN }}
|
T: ${{ secrets.TOKEN }}
|
||||||
BR: ${{ needs.build-process.outputs.branch }}
|
BR: ${{ needs.build-process.outputs.branch }}
|
||||||
|
42
build.py
42
build.py
@ -225,7 +225,7 @@ class DockerBuilder:
|
|||||||
self,
|
self,
|
||||||
template: str,
|
template: str,
|
||||||
organization: str,
|
organization: str,
|
||||||
install_pakages=None,
|
install_packages=None,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
) -> str:
|
) -> str:
|
||||||
if self.registry:
|
if self.registry:
|
||||||
@ -237,7 +237,7 @@ class DockerBuilder:
|
|||||||
rendered = Template(template).render(
|
rendered = Template(template).render(
|
||||||
alt_image=alt_image,
|
alt_image=alt_image,
|
||||||
branch=self.branch,
|
branch=self.branch,
|
||||||
install_pakages=install_pakages,
|
install_packages=install_packages,
|
||||||
organization=organization,
|
organization=organization,
|
||||||
registry=registry,
|
registry=registry,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
@ -247,7 +247,7 @@ class DockerBuilder:
|
|||||||
|
|
||||||
@forall_images(consume_result=True)
|
@forall_images(consume_result=True)
|
||||||
def render_dockerfiles(self, **kwargs):
|
def render_dockerfiles(self, **kwargs):
|
||||||
def install_pakages(*names):
|
def install_packages(*names):
|
||||||
tasks = self.tasks.get(self.branch, kwargs["image"])
|
tasks = self.tasks.get(self.branch, kwargs["image"])
|
||||||
linux32 = '$([ "$(rpm --eval %_host_cpu)" = i586 ] && echo linux32)'
|
linux32 = '$([ "$(rpm --eval %_host_cpu)" = i586 ] && echo linux32)'
|
||||||
if tasks:
|
if tasks:
|
||||||
@ -273,7 +273,7 @@ class DockerBuilder:
|
|||||||
rendered = self.render_template(
|
rendered = self.render_template(
|
||||||
dockerfile_template.read_text(),
|
dockerfile_template.read_text(),
|
||||||
self.overwrite_organization,
|
self.overwrite_organization,
|
||||||
install_pakages,
|
install_packages,
|
||||||
)
|
)
|
||||||
kwargs["dockerfile"].write_text(rendered + "\n")
|
kwargs["dockerfile"].write_text(rendered + "\n")
|
||||||
|
|
||||||
@ -638,8 +638,8 @@ class ImagesInfo:
|
|||||||
|
|
||||||
def parse_args():
|
def parse_args():
|
||||||
stages = ["build", "remove_dockerfiles", "render_dockerfiles", "push"]
|
stages = ["build", "remove_dockerfiles", "render_dockerfiles", "push"]
|
||||||
arches = ["amd64", "386", "arm64", "arm", "ppc64le"]
|
arches = ["amd64", "386", "arm64"]
|
||||||
branches = ["p9", "p10", "sisyphus"]
|
branches = ["p10", "sisyphus", "c10f1", "c10f2"]
|
||||||
organizations = list(ORG_DIR.iterdir())
|
organizations = list(ORG_DIR.iterdir())
|
||||||
images = [f"{o.name}/{i.name}" for o in organizations for i in o.iterdir()]
|
images = [f"{o.name}/{i.name}" for o in organizations for i in o.iterdir()]
|
||||||
organizations = [o.name for o in organizations]
|
organizations = [o.name for o in organizations]
|
||||||
@ -654,7 +654,8 @@ def parse_args():
|
|||||||
nargs="+",
|
nargs="+",
|
||||||
default=images,
|
default=images,
|
||||||
choices=images,
|
choices=images,
|
||||||
help="list of branches",
|
metavar="IMAGE_NAME",
|
||||||
|
help="list of images to build",
|
||||||
)
|
)
|
||||||
images_group.add_argument(
|
images_group.add_argument(
|
||||||
"-o",
|
"-o",
|
||||||
@ -664,6 +665,14 @@ def parse_args():
|
|||||||
choices=organizations,
|
choices=organizations,
|
||||||
help="build all images from these organizations",
|
help="build all images from these organizations",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--skip-images",
|
||||||
|
nargs="+",
|
||||||
|
default=[],
|
||||||
|
choices=images,
|
||||||
|
metavar="IMAGE_NAME",
|
||||||
|
help="list of images to skip",
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-r",
|
"-r",
|
||||||
"--registry",
|
"--registry",
|
||||||
@ -696,27 +705,20 @@ def parse_args():
|
|||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--sign",
|
"--sign",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
|
||||||
"--skip-images",
|
|
||||||
nargs="+",
|
|
||||||
default=[],
|
|
||||||
choices=images,
|
|
||||||
help="list of skipping images",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-a",
|
"-a",
|
||||||
"--arches",
|
"--arches",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=arches,
|
default=arches,
|
||||||
choices=arches,
|
choices=arches,
|
||||||
help="list of arches",
|
help="build images for these architectures",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--skip-arches",
|
"--skip-arches",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=[],
|
default=[],
|
||||||
choices=arches,
|
choices=arches,
|
||||||
help="list of skipping arches",
|
help="list of architectures to skip",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-b",
|
"-b",
|
||||||
@ -724,28 +726,28 @@ def parse_args():
|
|||||||
nargs="+",
|
nargs="+",
|
||||||
default=branches,
|
default=branches,
|
||||||
choices=branches,
|
choices=branches,
|
||||||
help="list of branches",
|
help="build images for these branches",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--skip-branches",
|
"--skip-branches",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=[],
|
default=[],
|
||||||
choices=branches,
|
choices=branches,
|
||||||
help="list of skipping branches",
|
help="list of branches to skip",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--stages",
|
"--stages",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=stages,
|
default=stages,
|
||||||
choices=stages,
|
choices=stages,
|
||||||
help="list of stages",
|
help="list of stages to go through",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--skip-stages",
|
"--skip-stages",
|
||||||
nargs="+",
|
nargs="+",
|
||||||
default=[],
|
default=[],
|
||||||
choices=stages,
|
choices=stages,
|
||||||
help="list of skipping stages",
|
help="list of stages to skip",
|
||||||
)
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
apachectl -v
|
|
@ -1 +0,0 @@
|
|||||||
LC_ALL=ru_RU.UTF-8 TZ=/usr/share/zoneinfo/Europe/Moscow date| grep MSK
|
|
@ -1 +0,0 @@
|
|||||||
curl --version && gpg --version
|
|
@ -1 +0,0 @@
|
|||||||
git --version && hg --version
|
|
@ -1 +0,0 @@
|
|||||||
gcc --version && make --version
|
|
@ -1,3 +0,0 @@
|
|||||||
ALT dockerfile for distroless-builder image.
|
|
||||||
|
|
||||||
This images is using to build tarball for distroless images.
|
|
@ -1 +0,0 @@
|
|||||||
apt-repo --version
|
|
@ -1 +0,0 @@
|
|||||||
ss -V
|
|
@ -1 +0,0 @@
|
|||||||
etcdctl version
|
|
@ -1 +0,0 @@
|
|||||||
gitea --version
|
|
@ -1 +0,0 @@
|
|||||||
nginx -v
|
|
@ -1 +0,0 @@
|
|||||||
node -v
|
|
@ -1 +0,0 @@
|
|||||||
prometheus --version
|
|
@ -1 +0,0 @@
|
|||||||
python3 --version
|
|
@ -1 +0,0 @@
|
|||||||
registry --version
|
|
@ -1 +0,0 @@
|
|||||||
ruby --version
|
|
@ -1 +0,0 @@
|
|||||||
ls -la /sbin/init | grep systemd
|
|
@ -1 +0,0 @@
|
|||||||
unitd --version
|
|
@ -2,6 +2,6 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
|
|
||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
{{ install_pakages("glibc-gconv-modules", "glibc-locales", "tzdata") }}
|
{{ install_packages("glibc-gconv-modules", "glibc-locales", "tzdata") }}
|
||||||
|
|
||||||
CMD ["bash"]
|
CMD ["bash"]
|
2
org/base/base/test.yaml
Normal file
2
org/base/base/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "LC_ALL=ru_RU.UTF-8 TZ=/usr/share/zoneinfo/Europe/Moscow date| grep MSK"
|
@ -6,7 +6,7 @@ LABEL org.opencontainers.image.title="buildpack-deps-curl"
|
|||||||
LABEL org.opencontainers.image.licenses="GPLv2"
|
LABEL org.opencontainers.image.licenses="GPLv2"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages(
|
{{ install_packages(
|
||||||
"ca-certificates",
|
"ca-certificates",
|
||||||
"curl",
|
"curl",
|
||||||
"gnupg",
|
"gnupg",
|
2
org/base/buildpack-deps-curl/test.yaml
Normal file
2
org/base/buildpack-deps-curl/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "curl --version && gpg --version"
|
@ -6,7 +6,7 @@ LABEL org.opencontainers.image.title="buildpack-deps-scm"
|
|||||||
LABEL org.opencontainers.image.licenses="GPLv2"
|
LABEL org.opencontainers.image.licenses="GPLv2"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages(
|
{{ install_packages(
|
||||||
"git",
|
"git",
|
||||||
"mercurial",
|
"mercurial",
|
||||||
"openssh-clients",
|
"openssh-clients",
|
2
org/base/buildpack-deps-scm/test.yaml
Normal file
2
org/base/buildpack-deps-scm/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "git --version && hg --version"
|
@ -6,7 +6,7 @@ LABEL org.opencontainers.image.title="buildpack-deps"
|
|||||||
LABEL org.opencontainers.image.licenses="GPLv2"
|
LABEL org.opencontainers.image.licenses="GPLv2"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages(
|
{{ install_packages(
|
||||||
"ImageMagick",
|
"ImageMagick",
|
||||||
"autoconf",
|
"autoconf",
|
||||||
"automake",
|
"automake",
|
2
org/base/buildpack-deps/test.yaml
Normal file
2
org/base/buildpack-deps/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "gcc --version && make --version"
|
@ -8,27 +8,27 @@ LABEL org.opencontainers.image.licenses="GPLv2"
|
|||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
# install editor
|
# install editor
|
||||||
{{ install_pakages("vim-console") }}
|
{{ install_packages("vim-console") }}
|
||||||
|
|
||||||
# install debugging tools
|
# install debugging tools
|
||||||
{{ install_pakages("strace", "gdb") }}
|
{{ install_packages("strace", "gdb") }}
|
||||||
|
|
||||||
# install document viewers
|
# install document viewers
|
||||||
{{ install_pakages("man") }}
|
{{ install_packages("man") }}
|
||||||
|
|
||||||
# install version control system
|
# install version control system
|
||||||
{{ install_pakages("git-core", "perl-Git") }}
|
{{ install_packages("git-core", "perl-Git") }}
|
||||||
|
|
||||||
# install network utils
|
# install network utils
|
||||||
{{ install_pakages("iproute2", "iputils", "wget", "curl") }}
|
{{ install_packages("iproute2", "iputils", "wget", "curl") }}
|
||||||
|
|
||||||
# install file utils
|
# install file utils
|
||||||
{{ install_pakages("lsof", "ripgrep") }}
|
{{ install_packages("lsof", "ripgrep") }}
|
||||||
|
|
||||||
# install shell and completions
|
# install shell and completions
|
||||||
{{ install_pakages("zsh", "zsh-completions") }}
|
{{ install_packages("zsh", "zsh-completions") }}
|
||||||
|
|
||||||
# install compilation utils
|
# install compilation utils
|
||||||
{{ install_pakages("make", "gcc", "gcc-c++") }}
|
{{ install_packages("make", "gcc", "gcc-c++") }}
|
||||||
|
|
||||||
CMD ["zsh"]
|
CMD ["zsh"]
|
@ -3,13 +3,13 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
LABEL org.opencontainers.image.title="distroless-builder"
|
LABEL org.opencontainers.image.title="distroless-builder"
|
||||||
LABEL org.opencontainers.image.description="This images is using to build tarball for distroless images"
|
LABEL org.opencontainers.image.description="This image is used to build tarballs for distroless images"
|
||||||
LABEL org.opencontainers.image.licenses="GPLv2"
|
LABEL org.opencontainers.image.licenses="GPLv2"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
RUN echo %_excludedocs 1 >> /etc/rpm/macros
|
RUN echo %_excludedocs 1 >> /etc/rpm/macros
|
||||||
RUN rpm -qalds | awk '/^normal/{print $2}' | xargs rm -rf
|
RUN rpm -qalds | awk '/^normal/{print $2}' | xargs rm -rf
|
||||||
{{ install_pakages("python3", "glibc-utils", "apt-repo") }}
|
{{ install_packages("python3", "glibc-utils", "apt-repo") }}
|
||||||
WORKDIR /usr/src/distroless
|
WORKDIR /usr/src/distroless
|
||||||
RUN mkdir file-lists
|
RUN mkdir file-lists
|
||||||
RUN useradd -m nonroot
|
RUN useradd -m nonroot
|
3
org/base/distroless-builder/README.md
Normal file
3
org/base/distroless-builder/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
ALT dockerfile for distroless-builder image.
|
||||||
|
|
||||||
|
This image is used to build tarballs for distroless images.
|
2
org/base/distroless-builder/test.yaml
Normal file
2
org/base/distroless-builder/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "apt-repo --version"
|
2
org/base/distroless-devel/test.yaml
Normal file
2
org/base/distroless-devel/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "ss -V"
|
2
org/base/distroless-gotop/test.yaml
Normal file
2
org/base/distroless-gotop/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: ""
|
||||||
|
command: "--version"
|
2
org/base/distroless-true/test.yaml
Normal file
2
org/base/distroless-true/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: ""
|
||||||
|
command: "true"
|
13
org/base/trivy/Dockerfile.template
Normal file
13
org/base/trivy/Dockerfile.template
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
||||||
|
|
||||||
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.title="trivy"
|
||||||
|
LABEL org.opencontainers.image.description="A Fast Vulnerability Scanner for Containers"
|
||||||
|
LABEL org.opencontainers.image.source="https://aquasecurity.github.io/trivy"
|
||||||
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
|
{{ install_packages("trivy") }}
|
||||||
|
|
||||||
|
ENTRYPOINT [ "trivy" ]
|
10
org/base/trivy/README.md
Normal file
10
org/base/trivy/README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
dockerfiles-alt-trivy
|
||||||
|
=====================
|
||||||
|
|
||||||
|
ALT dockerfile for trivy.
|
||||||
|
|
||||||
|
Copy dockerfile somewhere and built the image:
|
||||||
|
`$ docker build --rm -t <username>/trivy .`
|
||||||
|
|
||||||
|
And launch the trivy container
|
||||||
|
`$ docker run -it <username>/trivy`
|
2
org/base/trivy/test.yaml
Normal file
2
org/base/trivy/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "trivy --version"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/cert-manager/cert-mana
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("cert-manager") }}
|
{{ install_packages("cert-manager") }}
|
||||||
|
|
||||||
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
||||||
|
|
2
org/cert-manager/cert-manager-cainjector/test.yaml
Normal file
2
org/cert-manager/cert-manager-cainjector/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "cainjector --help"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/cert-manager/cert-mana
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("cert-manager") }}
|
{{ install_packages("cert-manager") }}
|
||||||
|
|
||||||
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
||||||
|
|
2
org/cert-manager/cert-manager-controller/test.yaml
Normal file
2
org/cert-manager/cert-manager-controller/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "controller --help"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/cert-manager/cert-mana
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("cert-manager") }}
|
{{ install_packages("cert-manager") }}
|
||||||
|
|
||||||
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
RUN groupadd -r -g 1000 cert-manger && useradd --no-log-init -r -u 1000 -g cert-manger cert-manger
|
||||||
|
|
2
org/cert-manager/cert-manager-webhook/test.yaml
Normal file
2
org/cert-manager/cert-manager-webhook/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "webhook --help"
|
@ -8,6 +8,6 @@ LABEL org.opencontainers.image.source="https://github.com/flannel-io/cni-plugin"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("cni-plugin-flannel") }}
|
{{ install_packages("cni-plugin-flannel") }}
|
||||||
|
|
||||||
RUN cp /usr/libexec/cni/flannel /flannel
|
RUN cp /usr/libexec/cni/flannel /flannel
|
2
org/flannel/flannel-cni-plugin/test.yaml
Normal file
2
org/flannel/flannel-cni-plugin/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: ""
|
||||||
|
command: "flannel"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/flannel-io/flannel"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages(
|
{{ install_packages(
|
||||||
"iproute2",
|
"iproute2",
|
||||||
"net-tools",
|
"net-tools",
|
||||||
"ca-certificates",
|
"ca-certificates",
|
2
org/flannel/flannel/test.yaml
Normal file
2
org/flannel/flannel/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "flanneld --version"
|
@ -1 +0,0 @@
|
|||||||
cainjector --help
|
|
@ -1 +0,0 @@
|
|||||||
controller --help
|
|
@ -1 +0,0 @@
|
|||||||
webhook --help
|
|
@ -8,6 +8,6 @@ LABEL org.opencontainers.image.source="https://github.com/coredns/coredns"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("coredns") }}
|
{{ install_packages("coredns") }}
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/coredns"]
|
ENTRYPOINT ["/usr/bin/coredns"]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
coredns --version
|
|
2
org/k8s/coredns/test.yaml
Normal file
2
org/k8s/coredns/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "coredns --version"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/etcd-io/etcd"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("etcd") }}
|
{{ install_packages("etcd") }}
|
||||||
|
|
||||||
VOLUME /data
|
VOLUME /data
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
etcd --version
|
|
2
org/k8s/etcd/test.yaml
Normal file
2
org/k8s/etcd/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "etcd --version"
|
@ -1 +0,0 @@
|
|||||||
flanneld --version
|
|
@ -2,6 +2,12 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
|
|
||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
{{ install_pakages("kubernetes-master") }}
|
LABEL org.opencontainers.image.title="kube-apiserver"
|
||||||
|
LABEL org.opencontainers.image.description="The Kubernetes API server validates and configures data for the api objects which include pods, services, replicationcontrollers, and others."
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/kubernetes/kubernetes"
|
||||||
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
|
{{ install_packages("kubernetes-master") }}
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/kube-apiserver"]
|
ENTRYPOINT ["/usr/bin/kube-apiserver"]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
kube-apiserver --version
|
|
2
org/k8s/kube-apiserver/test.yaml
Normal file
2
org/k8s/kube-apiserver/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "kube-apiserver --version"
|
@ -2,6 +2,12 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
|
|
||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
{{ install_pakages("kubernetes-master") }}
|
LABEL org.opencontainers.image.title="kube-controller-manager"
|
||||||
|
LABEL org.opencontainers.image.description="The Kubernetes controller manager is a daemon that embeds the core control loops shipped with Kubernetes."
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/kubernetes/kubernetes"
|
||||||
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
|
{{ install_packages("kubernetes-master") }}
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/kube-controller-manager"]
|
ENTRYPOINT ["/usr/bin/kube-controller-manager"]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
kube-controller-manager --version
|
|
2
org/k8s/kube-controller-manager/test.yaml
Normal file
2
org/k8s/kube-controller-manager/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "kube-controller-manager --version"
|
@ -2,7 +2,13 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
|
|
||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
{{ install_pakages("kubernetes-node") }}
|
LABEL org.opencontainers.image.title="kube-proxy"
|
||||||
|
LABEL org.opencontainers.image.description="The Kubernetes network proxy runs on each node."
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/kubernetes/kubernetes"
|
||||||
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
|
{{ install_packages("kubernetes-node") }}
|
||||||
|
|
||||||
RUN ln -s /usr/bin/kube-proxy /usr/local/bin/kube-proxy
|
RUN ln -s /usr/bin/kube-proxy /usr/local/bin/kube-proxy
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
kube-proxy --version
|
|
2
org/k8s/kube-proxy/test.yaml
Normal file
2
org/k8s/kube-proxy/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "kube-proxy --version"
|
@ -2,6 +2,12 @@ FROM {{ registry }}{{ alt_image }}:{{ branch }}
|
|||||||
|
|
||||||
MAINTAINER alt-cloud
|
MAINTAINER alt-cloud
|
||||||
|
|
||||||
{{ install_pakages("kubernetes-master") }}
|
LABEL org.opencontainers.image.title="kube-scheduler"
|
||||||
|
LABEL org.opencontainers.image.description="The Kubernetes scheduler is a control plane process which assigns Pods to Nodes."
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/kubernetes/kubernetes"
|
||||||
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
|
{{ install_packages("kubernetes-master") }}
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/kube-scheduler"]
|
ENTRYPOINT ["/usr/bin/kube-scheduler"]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
kube-scheduler --version
|
|
2
org/k8s/kube-scheduler/test.yaml
Normal file
2
org/k8s/kube-scheduler/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "kube-scheduler --version"
|
@ -1,6 +1,6 @@
|
|||||||
FROM {{ registry }}{{ alt_image }}:{{ branch }} as installer
|
FROM {{ registry }}{{ alt_image }}:{{ branch }} as installer
|
||||||
|
|
||||||
{{ install_pakages("kubernetes-pause") }}
|
{{ install_packages("kubernetes-pause") }}
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
|
||||||
|
2
org/k8s/pause/test.yaml
Normal file
2
org/k8s/pause/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/pause"
|
||||||
|
command: "-v"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/aquasecurity/k8s-node-
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages(
|
{{ install_packages(
|
||||||
"k8s-trivy-node-collector"
|
"k8s-trivy-node-collector"
|
||||||
) }}
|
) }}
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
node-collector --help
|
|
2
org/k8s/trivy-node-collector/test.yaml
Normal file
2
org/k8s/trivy-node-collector/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "node-collector --help"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="http://httpd.apache.org"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("apache2") }}
|
{{ install_packages("apache2") }}
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
2
org/other/apache2/test.yaml
Normal file
2
org/other/apache2/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "apachectl -v"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/etcd-io/etcd"
|
|||||||
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
LABEL org.opencontainers.image.licenses="Apache-2.0"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("etcd") }}
|
{{ install_packages("etcd") }}
|
||||||
|
|
||||||
VOLUME /data
|
VOLUME /data
|
||||||
|
|
2
org/other/etcd/test.yaml
Normal file
2
org/other/etcd/test.yaml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
entrypoint: "/bin/sh"
|
||||||
|
command: "etcdctl version"
|
@ -8,7 +8,7 @@ LABEL org.opencontainers.image.source="https://github.com/go-gitea/gitea"
|
|||||||
LABEL org.opencontainers.image.licenses="MIT"
|
LABEL org.opencontainers.image.licenses="MIT"
|
||||||
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
LABEL org.opencontainers.image.vendor="ALT Linux Team"
|
||||||
|
|
||||||
{{ install_pakages("gitea", "openssh-server", "gosu") }}
|
{{ install_packages("gitea", "openssh-server", "gosu") }}
|
||||||
|
|
||||||
ENV USER gitea
|
ENV USER gitea
|
||||||
ENV HOME /var/lib/gitea
|
ENV HOME /var/lib/gitea
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user