Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for kubeyaml (0.47 sec)

  1. pilot/pkg/config/file/util/kubeyaml/kubeyaml.go

    // 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.
    
    package kubeyaml
    
    import (
    	"bufio"
    	"bytes"
    	"io"
    	"strings"
    	"unicode"
    )
    
    const (
    	yamlSeparator = "---\n"
    	separator     = "---"
    )
    
    // Join the given yaml parts into a single multipart document.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 02:41:40 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crd/conversion.go

    package crd
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"io"
    	"reflect"
    
    	"github.com/hashicorp/go-multierror"
    	"gopkg.in/yaml.v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubeyaml "k8s.io/apimachinery/pkg/util/yaml"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/log"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/file/util/kubeyaml/kubeyaml_test.go

    // 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.
    
    package kubeyaml
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"strings"
    	"testing"
    
    	. "github.com/onsi/gomega"
    )
    
    var joinCases = []struct {
    	merged string
    	split  []string
    }{
    	{
    		merged: "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/config/crd/validator.go

    	"k8s.io/apiextensions-apiserver/pkg/apiserver/validation"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	kubeyaml "k8s.io/apimachinery/pkg/util/yaml"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/yml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/file/store.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	kubeJson "k8s.io/apimachinery/pkg/runtime/serializer/json"
    	"k8s.io/apimachinery/pkg/util/yaml"
    
    	kubeyaml2 "istio.io/istio/pilot/pkg/config/file/util/kubeyaml"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	legacykube "istio.io/istio/pkg/config/analysis/legacy/source/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.16.md

    * kubeamd: use the --pod-network-cidr flag to init or use the podSubnet field in the kubeadm config to pass a comma separated list of pod CIDRs.  ([#79033](https://github.com/kubernetes/kubernetes/pull/79033), [@Arvinderpal](https://github.com/Arvinderpal))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top