sigs.k8s.io/gateway-api@v1.0.0/conformance/utils/flags/experimental_flags.go (about) 1 /* 2 Copyright 2023 The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 // flags contains command-line flag definitions for the conformance 18 // profile certification. They're in this package so they can be shared 19 // among the various suites that are all run by the same Makefile invocation. 20 package flags 21 22 import "flag" 23 24 var ( 25 ImplementationOrganization = flag.String("organization", "", "Implementation's Organization to issue conformance to") 26 ImplementationProject = flag.String("project", "", "Implementation's project to issue conformance to") 27 ImplementationURL = flag.String("url", "", "Implementation's url to issue conformance to") 28 ImplementationVersion = flag.String("version", "", "Implementation's version to issue conformance to") 29 ImplementationContact = flag.String("contact", "", "Comma-separated list of contact information for the maintainers") 30 ConformanceProfiles = flag.String("conformance-profiles", "", "Comma-separated list of the conformance profiles to run") 31 ReportOutput = flag.String("report-output", "", "The file where to write the conformance report") 32 )