Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • hdacloud/images
  • l.seipel/images
2 results
Show changes
Commits on Source (14)
FROM quay.io/centos/centos:stream9
LABEL \
org.opencontainers.image.title="creator-ee" \
org.opencontainers.image.url="https://code.fbi.h-da.de/hdacloud/images" \
org.opencontainers.image.source="https://code.fbi.h-da.de/hdacloud/images"
RUN \
yum update -y && \
yum -y upgrade && \
yum install -y \
git-core \
podman \
python3 \
python3-pip \
&& yum clean all
RUN \
pip install \
dumb-init \
bcrypt \
cffi \
markupsafe \
pip \
pynacl \
pyrsistent \
pyyaml \
ruamel-yaml \
wheel \
ansible \
ansible-lint
FROM stackexchange/dnscontrol:latest
LABEL \
org.opencontainers.image.title="dnscontrol" \
org.opencontainers.image.url="https://code.fbi.h-da.de/hdacloud/images" \
org.opencontainers.image.source="https://code.fbi.h-da.de/hdacloud/images"
RUN apk add \
py3-pip \
openssh-client
RUN pip install \
python-gitlab \
ansible
WORKDIR /dns
ENTRYPOINT [""]
FROM quay.io/ansible/creator-ee:latest
FROM registry.code.fbi.h-da.de/hdacloud/images/creator-ee:latest
LABEL \
org.opencontainers.image.title="netci" \
org.opencontainers.image.url="https://code.fbi.h-da.de/hdacloud/images" \
org.opencontainers.image.source="https://code.fbi.h-da.de/hdacloud/images"
COPY requirements.yaml requirements.yaml
RUN yum install -y make graphviz gcc gcc-c++ python-devel \
RUN \
yum install -y \
make \
graphviz \
gcc \
gcc-c++ \
python3-devel \
&& yum clean all
RUN pip install \
......@@ -17,8 +24,6 @@ RUN pip install \
pynetbox \
yamllint
RUN ansible-galaxy role install cloudalchemy.node_exporter aruhier.systemd_networkd linux-system-roles.selinux
RUN ansible-galaxy collection install netbox.netbox community.general ansible.netcommon paloaltonetworks.panos
RUN ansible-galaxy install -r requirements.yaml
# XXX why does this fail all of a sudden? Change in ansible-galaxy?
RUN ansible-galaxy role install --ignore-errors hdacloud.frrlite,git+https://code.fbi.h-da.de/hdacloud/ansible-frrlite
RUN rm -f requirements.yaml
---
roles:
- name: cloudalchemy.node_exporter
- name: aruhier.systemd_networkd
- name: linux-system-roles.selinux
- name: hdacloud.frrlite
src: git+https://code.fbi.h-da.de/hdacloud/ansible-frrlite
collections:
- name: netbox.netbox
- name: community.general
- name: ansible.netcommon
- name: paloaltonetworks.panos
- name: ansible.posix
FROM registry.access.redhat.com/ubi8/ubi
RUN curl -O https://linux.dell.com/repo/hardware/dsu/bootstrap.cgi \
&& (yes | bash bootstrap.cgi) && rm -f bootstrap.cgi
RUN yum update -y && yum install -y \
srvadmin-idracadm7 \
openssl-devel \
&& yum clean all
ADD entrypoint /
ENTRYPOINT ["/entrypoint"]
CMD ["/opt/dell/srvadmin/bin/idracadm7"]
#!/bin/bash
exec "$@"
......@@ -23,4 +23,6 @@ EOF
exec /kaniko/executor \
--context "$context" \
--dockerfile "$dockerfile" \
--destination "$destination"
--destination "$destination" \
--cleanup \
--force