-
Notifications
You must be signed in to change notification settings - Fork 0
/
melange.yaml
67 lines (64 loc) · 2.26 KB
/
melange.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (C) Nicolas Lamirault <nicolas.lamirault@gmail.com>
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0
---
package:
name: portefaix-distroless
version: 0.1.0
description: "Portefaix tools for CI/CD"
target-architecture:
- all
copyright:
- license: Apache-2.0
paths:
- "*"
dependencies:
runtime:
environment:
contents:
# keyring:
# - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
repositories:
# - https://packages.wolfi.dev/os
- https://dl-cdn.alpinelinux.org/alpine/edge/main
- https://dl-cdn.alpinelinux.org/alpine/edge/community
packages:
# - wolfi-baselayout # replaces alpine-baselayout-data
- alpine-baselayout-data
- ca-certificates-bundle
- busybox
- curl
pipeline:
# - uses: strip
- name: Install dependencies
runs: |
set -x
ARCH=$(uname -m)
case $ARCH in
"x86_64") ARCH="amd64" ;;
"aarch64") ARCH="arm64" ;;
esac
DEPS="deps"
install -D entrypoint.sh ${{targets.destdir}}/usr/bin/entrypoint.sh
install -D ${DEPS}/kubectl-${ARCH} ${{targets.destdir}}/usr/bin/kubectl
install -D ${DEPS}/helm-${ARCH} ${{targets.destdir}}/usr/bin/helm
install -D ${DEPS}/kustomize-${ARCH} ${{targets.destdir}}/usr/bin/kustomize
install -D ${DEPS}/jq-${ARCH} ${{targets.destdir}}/usr/bin/jq
install -D ${DEPS}/yq-${ARCH} ${{targets.destdir}}/usr/bin/yq
# install -D ${DEPS}/kubeval-${ARCH} ${{targets.destdir}}/usr/bin/kubeval
# install -D ${DEPS}/kubeconform-${ARCH} ${{targets.destdir}}/usr/bin/kubeconform
# install -D ${DEPS}/opa-${ARCH} ${{targets.destdir}}/usr/bin/opa
# install -D ${DEPS}/conftest-${ARCH} ${{targets.destdir}}/usr/bin/conftest
install -D ${DEPS}/jb-${ARCH} ${{targets.destdir}}/usr/bin/jb