1 // Copyright 2019 The Kubernetes Authors. 2 // SPDX-License-Identifier: Apache-2.0 3 4 // Package krmfile provides functionality for working with Krmfiles. 5 // 6 // Example Krmfile 7 // 8 // apiVersion: config.k8s.io/v1alpha1 9 // kind: Krmfile 10 // openAPI: 11 // definitions: 12 // io.k8s.cli.setters.replicas: 13 // x-k8s-cli: 14 // setter: 15 // name: replicas 16 // value: "3" 17 // setBy: me 18 // description: "hello world" 19 package krmfile 20