helm-templexer 0.2.4

Render Kubernetes Helm charts for multiple environments with _explicit config_ while keeping the overhead at ease
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:slim-buster as builder
WORKDIR /usr/src/

RUN USER=root cargo new helm-templexer
WORKDIR /usr/src/helm-templexer
COPY Cargo.toml Cargo.lock ./
RUN cargo build --release

COPY src ./src
RUN cargo install --path .

FROM debian:buster-slim
COPY --from=builder /usr/local/cargo/bin/helm-templexer /usr/local/bin/

CMD ["--help"]
ENTRYPOINT ["helm-templexer"]