4
0
Fork 0
mirror of https://github.com/rocky-linux/peridot.git synced 2025-01-10 02:50:55 +00:00
peridot/ci/istio/base.libsonnet

17 lines
422 B
Text
Raw Normal View History

2022-07-07 20:11:50 +00:00
{
KIND_ENVOYFILTER: 'EnvoyFilter',
// Types (unfinished):
// - EnvoyFilter
networking_base(info)::
local envoyFilterTest = std.assertEqual(info.kind, $.KIND_ENVOYFILTER);
local _ = if !envoyFilterTest then non_existing_value;
{
apiVersion: 'networking.istio.io/v1alpha3',
kind: info.kind,
metadata: info.metadata,
} + if std.objectHas(info, 'spec') then info.spec else {},
}