-
Notifications
You must be signed in to change notification settings - Fork 14
/
.kres.yaml
46 lines (46 loc) · 914 Bytes
/
.kres.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
---
kind: common.Repository
spec:
licenses: []
conformGPGSignatureCheck: false
---
kind: golang.Generate
spec:
versionPackagePath: internal/version
---
kind: service.CodeCov
spec:
enabled: false
---
kind: common.Image
spec:
additionalImages: []
allowedLocalPaths:
- manifest.yaml
- talos-vmtoolsd.yaml
copyFrom:
- stage: extension
entrypoint: /rootfs/usr/local/lib/containers/talos-vmtoolsd/talos-vmtoolsd
---
kind: auto.CustomSteps
spec:
steps:
- name: extension
toplevel: true
---
kind: custom.Step
name: extension
spec:
docker:
enabled: true
stages:
- name: extension
description: copies the required files for the extension
steps:
- copy:
src: manifest.yaml
dst: /
- copy:
src: talos-vmtoolsd.yaml
dst: /rootfs/usr/local/etc/containers/talos-vmtoolsd.yaml
---