blob: 18175f3a74b2b2529ef477342e23bca6cff564b2 [file] [log] [blame]
rameshiyer279ab7dc72021-07-07 08:02:55 +01001#-------------------------------------------------------------------------------
2# ============LICENSE_START=======================================================
danielhanrahan023b63a2022-06-01 17:34:54 +01003# Copyright (C) 2022 Nordix Foundation.
rameshiyer279ab7dc72021-07-07 08:02:55 +01004# ================================================================================
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17# SPDX-License-Identifier: Apache-2.0
18# ============LICENSE_END=========================================================
19#-------------------------------------------------------------------------------
20
danielhanrahancd213592022-07-11 18:14:13 +010021FROM busybox AS tarball
22RUN mkdir /packages /extracted
23COPY /maven/lib/kubernetes-participant.tar.gz /packages/
24RUN tar xvzf /packages/kubernetes-participant.tar.gz --directory /extracted/
25
danielhanrahand0db79a2022-07-11 15:15:40 +010026FROM opensuse/leap:15.4
rameshiyer279ab7dc72021-07-07 08:02:55 +010027
28LABEL maintainer="Policy Team"
danielhanrahan54c12dd2022-06-28 16:55:46 +010029LABEL org.opencontainers.image.title="Policy CLAMP ACM K8S Participant"
30LABEL org.opencontainers.image.description="Policy CLAMP ACM K8S Participant image based on OpenSuse"
31LABEL org.opencontainers.image.url="https://github.com/onap/policy-clamp"
32LABEL org.opencontainers.image.vendor="ONAP Policy Team"
33LABEL org.opencontainers.image.licenses="Apache-2.0"
34LABEL org.opencontainers.image.created="${git.build.time}"
35LABEL org.opencontainers.image.version="${git.build.version}"
36LABEL org.opencontainers.image.revision="${git.commit.id.abbrev}"
rameshiyer279ab7dc72021-07-07 08:02:55 +010037
rameshiyer2761318022022-07-05 23:08:44 +010038ARG POLICY_LOGS=/var/log/onap/policy/k8s-participant
rameshiyer279ab7dc72021-07-07 08:02:55 +010039
40ENV POLICY_LOGS=$POLICY_LOGS
danielhanrahan023b63a2022-06-01 17:34:54 +010041ENV POLICY_HOME=/opt/app/policy/clamp
42ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8
43ENV JAVA_HOME=/usr/lib64/jvm/java-11-openjdk-11
rameshiyer279ab7dc72021-07-07 08:02:55 +010044
danielhanrahan023b63a2022-06-01 17:34:54 +010045RUN zypper -n -q install --no-recommends gzip java-11-openjdk-headless netcat-openbsd tar wget && \
46 zypper -n -q update && zypper -n -q clean --all && \
47 groupadd --system policy && \
48 useradd --system --shell /bin/sh -G policy policy && \
danielhanrahancd213592022-07-11 18:14:13 +010049 mkdir -p /app $POLICY_HOME $POLICY_LOGS && \
50 chown -R policy:policy /app $POLICY_HOME $POLICY_LOGS
danielhanrahan023b63a2022-06-01 17:34:54 +010051
danielhanrahancd213592022-07-11 18:14:13 +010052COPY --chown=policy:policy --from=tarball /extracted $POLICY_HOME
rameshiyer279ab7dc72021-07-07 08:02:55 +010053
54WORKDIR $POLICY_HOME
danielhanrahancd213592022-07-11 18:14:13 +010055COPY --chown=policy:policy kubernetes-participant.sh bin/
56COPY --chown=policy:policy /maven/policy-clamp-participant-impl-kubernetes.jar /app/app.jar
rameshiyer279ab7dc72021-07-07 08:02:55 +010057
danielhanrahancd213592022-07-11 18:14:13 +010058RUN chmod 755 bin/*.sh && \
danielhanrahan99245172022-07-13 15:33:48 +010059 wget -nv https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz && \
rameshiyer279ab7dc72021-07-07 08:02:55 +010060 tar xvf helm-v3.5.2-linux-amd64.tar.gz && \
61 mv linux-amd64/helm /usr/local/bin && \
62 rm -rf linux-amd64 && \
63 rm helm-v3.5.2-linux-amd64.tar.gz && \
danielhanrahan99245172022-07-13 15:33:48 +010064 wget -nv https://storage.googleapis.com/kubernetes-release/release/v1.21.1/bin/linux/amd64/kubectl && \
rameshiyer279ab7dc72021-07-07 08:02:55 +010065 chmod +x kubectl && \
66 mv kubectl /usr/local/bin/kubectl
67
rameshiyer274334af12021-07-16 07:27:16 +010068EXPOSE 8083
rameshiyer279ab7dc72021-07-07 08:02:55 +010069
70USER policy
71WORKDIR $POLICY_HOME/bin
72ENTRYPOINT [ "./kubernetes-participant.sh" ]
73
74