# Copyright 2022 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

ARG BASE_IMAGE=docker.io/library/alpine:3.20
FROM --platform=$TARGETPLATFORM $BASE_IMAGE AS cache
ARG TARGETPLATFORM
COPY --chmod=0755 bin/$TARGETPLATFORM/kwok /usr/local/bin/
COPY --chmod=0755 bin/$TARGETPLATFORM/kwokctl /usr/local/bin/

ENV KWOK_CONTROLLER_BINARY /usr/local/bin/kwok
ENV KWOK_KUBE_APISERVER_INSECURE_PORT 8080
ENV KWOK_KUBE_APISERVER_PORT 0
ENV KWOK_RUNTIME binary

ARG kube_version
ENV KWOK_KUBE_VERSION $kube_version

ENV KWOK_QUIET_PULL true

RUN echo "KUBE_VERSION: ${KWOK_KUBE_VERSION}" && \
    kwokctl create cluster && \
    kwokctl kubectl version && \
    kwokctl delete cluster

FROM --platform=$TARGETPLATFORM $BASE_IMAGE
ARG TARGETPLATFORM

# Cache dependent binaries as the first layer
COPY --from=cache /root/.kwok/cache /root/.kwok/cache
COPY --chmod=0755 images/cluster/entrypoint.sh /entrypoint.sh
COPY --chmod=0755 bin/$TARGETPLATFORM/kwok /usr/local/bin/
COPY --chmod=0755 bin/$TARGETPLATFORM/kwokctl /usr/local/bin/

ENV KWOK_CONTROLLER_BINARY /usr/local/bin/kwok
ENV KWOK_KUBE_APISERVER_INSECURE_PORT 8080
ENV KWOK_KUBE_APISERVER_PORT 0
ENV KWOK_RUNTIME binary

ARG kube_version
ENV KWOK_KUBE_VERSION $kube_version

EXPOSE 8080

ENTRYPOINT ["/entrypoint.sh"]
