Skip to content

Commit

Permalink
ci: GitHub action syntax fixes
Browse files Browse the repository at this point in the history
Minor fixes for the GitHub action inputs according to the metadata syntax.

Signed-off-by: viktor-kurchenko <viktor.kurchenko@isovalent.com>
  • Loading branch information
viktor-kurchenko authored and sayboras committed May 13, 2024
1 parent 6e7dbb8 commit 2460a97
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions .github/actions/cilium-config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ inputs:
default: 'disabled'
endpoint-routes:
description: 'Enable endpoint routes'
default: false
default: 'false'
ipv6:
description: 'Enable IPv6'
default: true
default: 'true'
kpr:
description: 'Enable kube-proxy replacement'
default: false
default: 'false'
lb-mode:
description: 'KPR load-balancer mode'
default: 'snat'
Expand All @@ -30,22 +30,22 @@ inputs:
default: ''
encryption-node:
description: 'Enable node-to-node encryption (WireGuard only)'
default: false
default: 'false'
encryption-overlay:
description: 'Encrypt the overlay itself (IPsec only)'
default: false
default: 'false'
egress-gateway:
description: 'Enable egress gateway'
default: false
default: 'false'
host-fw:
description: 'Enable host firewall'
default: false
default: 'false'
mutual-auth:
description: 'Enable mTLS-based Mutual Authentication'
default: true
default: 'true'
ingress-controller:
description: 'Enable ingress controller, required kubeProxyReplacement'
default: false
default: 'false'
devices:
description: 'List of native devices to attach datapath programs'
default: ''
Expand All @@ -54,7 +54,7 @@ inputs:
default: ''
ciliumendpointslice:
description: 'Enable CiliumEndpointSlice'
default: false
default: 'false'
outputs:
config:
description: 'Cilium installation config'
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/conn-disrupt-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ description: Setup and test cilium connectivity and connection disruption status
inputs:
job-name:
required: true
type: string
description: 'Job name used in Cilium CLI outputs'
operation-cmd:
required: true
type: string
description: 'CLI commands to run'
extra-connectivity-test-flags:
required: false
type: string
description: 'Cilium CLI connectivity tests extra flags'

runs:
using: composite
Expand Down
10 changes: 5 additions & 5 deletions .github/actions/lvh-kind/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ description: Creates K8s cluster inside LVH VM, and then exposes K8s cluster to
inputs:
kernel:
required: true
type: string
description: 'Linux kernel version'
kind-params:
required: true
type: string
description: 'Kind parameters'
kind-image:
required: true
type: string
description: 'Kind image'
kind-config:
required: false
type: string
description: 'Optional Kind configuration'
test-name:
required: true
type: string
description: 'Test name'

runs:
using: composite
Expand Down

0 comments on commit 2460a97

Please sign in to comment.