Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bootstrap/k0s/moon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ project:

tasks:
lint:
command: 'proto exec hadolint -- hadolint Dockerfile'
command: 'hadolint Dockerfile'
toolchains: 'system'
inputs:
- '/.prototools'
Expand All @@ -25,7 +25,7 @@ tasks:
runInCI: true
vet:
command: >-
bash -lc "proto exec cue -- cue vet -c k0s.cue
bash -lc "cue vet -c k0s.cue
-t pod_cidr=10.244.0.0/16
-t service_cidr=10.96.0.0/12
-t public_ip=10.10.20.1
Expand All @@ -48,8 +48,8 @@ tasks:
runInCI: true
check:
command: >-
bash -lc "proto exec hadolint -- hadolint Dockerfile &&
proto exec cue -- cue vet -c k0s.cue
bash -lc "hadolint Dockerfile &&
cue vet -c k0s.cue
-t pod_cidr=10.244.0.0/16
-t service_cidr=10.96.0.0/12
-t public_ip=10.10.20.1
Expand Down
Loading