2019-09-23 13:29:24 -04:00
|
|
|
/*
|
|
|
|
|
Copyright The Helm Authors.
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-20 17:17:16 -04:00
|
|
|
package schema
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// InputMessagePostRendererV1 implements Input.Message
|
|
|
|
|
type InputMessagePostRendererV1 struct {
|
|
|
|
|
Manifests *bytes.Buffer `json:"manifests"`
|
|
|
|
|
// from CLI --post-renderer-args
|
2025-08-22 18:06:09 -04:00
|
|
|
ExtraArgs []string `json:"extraArgs"`
|
2025-08-20 17:17:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type OutputMessagePostRendererV1 struct {
|
|
|
|
|
Manifests *bytes.Buffer `json:"manifests"`
|
2019-09-23 13:29:24 -04:00
|
|
|
}
|
2025-08-25 14:45:49 -04:00
|
|
|
|
|
|
|
|
type ConfigPostRendererV1 struct{}
|
|
|
|
|
|
|
|
|
|
func (c *ConfigPostRendererV1) Validate() error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|