From 2e84d2ab3417515f539a70d58885dcb69e9f098c Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Fri, 16 Dec 2022 14:44:34 +0400 Subject: [PATCH] chore: update conformance product.yaml New requirements from CNCF. Signed-off-by: Andrey Smirnov --- pkg/cluster/sonobuoy/product.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/cluster/sonobuoy/product.go b/pkg/cluster/sonobuoy/product.go index 00f7576c03..565b0eb2a3 100644 --- a/pkg/cluster/sonobuoy/product.go +++ b/pkg/cluster/sonobuoy/product.go @@ -16,6 +16,7 @@ type product struct { ProductLogoURL string `yaml:"product_logo_url"` Type string `yaml:"type"` Description string `yaml:"description"` + ContactEmail string `yaml:"contact_email_address"` } var talos = product{ @@ -28,4 +29,5 @@ var talos = product{ ProductLogoURL: "https://www.talos.dev/images/Sidero_stacked_darkbkgd_RGB.svg", Type: "installer", Description: "Talos Linux is Linux designed for Kubernetes - secure, immutable, and minimal.", + ContactEmail: "developers@siderolabs.com", }