1 // Copyright 2019 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 package types 5 6 // ConfigMapArgs contains the metadata of how to generate a configmap. 7 type ConfigMapArgs struct { 8 // GeneratorArgs for the configmap. 9 GeneratorArgs `json:",inline,omitempty" yaml:",inline,omitempty"` 10 } 11