Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 455 for yamlv3 (0.11 sec)

  1. pilot/pkg/config/file/store.go

    	}
    
    	// Build flat map for analyzers if the line JSON object exists, if the YAML text is ill-formed, this will be nil
    	fieldMap := make(map[string]int)
    
    	// yamlv3.Node contains information like line number of the node, which will be used with its name to construct the field map
    	yamlChunkNode := yamlv3.Node{}
    	err = yamlv3.Unmarshal(yamlChunk, &yamlChunkNode)
    	if err == nil && len(yamlChunkNode.Content) == 1 {
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. operator/pkg/object/objects_test.go

    				}
    			}
    		})
    	}
    }
    
    // compareYAMLContent compares two yaml resources and returns true if they are equal. If they have same content but different
    // order of fields, it will return true as well.
    func compareYAMLContent(yaml1, yaml2 string) bool {
    	var obj1, obj2 interface{}
    	err := k8syaml.Unmarshal([]byte(yaml1), &obj1)
    	if err != nil {
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. build/dependencies.yaml

        - path: staging/src/k8s.io/kubectl/testdata/set/multi-resource-yaml.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: staging/src/k8s.io/kubectl/testdata/set/namespaced-resource.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/cmd/core.sh
          match: registry.k8s.io\/pause:\d+\.\d+
        - path: test/fixtures/pkg/kubectl/cmd/set/multi-resource-yaml.yaml
          match: registry.k8s.io\/pause:\d+\.\d+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kiali
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    data:
      config.yaml: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. samples/addons/prometheus.yaml

    ---
    # Source: prometheus/templates/serviceaccount.yaml
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      labels:
        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
        app.kubernetes.io/version: v2.52.0
        helm.sh/chart: prometheus-25.21.0
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. operator/pkg/manifest/shared.go

    	if psf != "" {
    		profile = psf
    	}
    	return fy, profile, nil
    }
    
    // ParseYAMLFiles parses the given slice of filenames containing YAML and merges them into a single IstioOperator
    // format YAML strings. It returns the overlay YAML, the profile name and error result.
    func ParseYAMLFiles(inFilenames []string, force bool, l clog.Logger) (overlayYAML string, profile string, err error) {
    	if inFilenames == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. hack/golangci.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. helm/minio/templates/statefulset.yaml

            {{- end }}
          annotations:
            {{- if not .Values.ignoreChartChecksums }}
            checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
            checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
            {{- end }}
            {{- if .Values.podAnnotations }}
              {{- toYaml .Values.podAnnotations | nindent 8 }}
            {{- end }}
        spec:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. operator/pkg/util/merge_iop.go

    	if strings.TrimSpace(base) == "" {
    		return overlay, nil
    	}
    	if strings.TrimSpace(overlay) == "" {
    		return base, nil
    	}
    	bj, err := yaml2.YAMLToJSON([]byte(base))
    	if err != nil {
    		return "", fmt.Errorf("yamlToJSON error in base: %s\n%s", err, bj)
    	}
    	oj, err := yaml2.YAMLToJSON([]byte(overlay))
    	if err != nil {
    		return "", fmt.Errorf("yamlToJSON error in overlay: %s\n%s", err, oj)
    	}
    	if base == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. operator/pkg/compare/compare.go

    	if len(r.diffTree) == 0 {
    		return ""
    	}
    	y, err := yaml.Marshal(r.diffTree)
    	if err != nil {
    		return err.Error()
    	}
    	return string(y)
    }
    
    // YAMLCmp compares two yaml texts, return a tree based diff text.
    func YAMLCmp(a, b string) string {
    	return YAMLCmpWithIgnore(a, b, nil, "")
    }
    
    // YAMLCmpWithIgnore compares two yaml texts, and ignores paths in ignorePaths.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top