Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for ConfigMap (0.41 sec)

  1. manifests/charts/istiod-remote/templates/configmap.yaml

    {{- $originalMesh := include "mesh" . | fromYaml }}
    {{- $mesh := mergeOverwrite $originalMesh .Values.meshConfig }}
    
    {{- if .Values.pilot.configMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

    {{- $originalMesh := include "mesh" . | fromYaml }}
    {{- $mesh := mergeOverwrite $originalMesh .Values.meshConfig }}
    
    {{- if .Values.pilot.configMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 16:59:18 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  3. helm/minio/templates/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: {{ template "minio.fullname" . }}
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
    data:
      initialize: |-
        {{- include (print $.Template.BasePath "/_helper_create_bucket.txt") . | nindent 4 }}
      add-user: |-
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/configmap-cni.yaml

    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: istio-cni-config
      namespace: {{ .Release.Namespace }}
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 12 16:44:21 GMT 2021
    - 549 bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    {{- if not .Values.global.omitSidecarInjectorConfigMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    {{- if not .Values.global.omitSidecarInjectorConfigMap }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: istio-sidecar-injector{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/kubeinject.go

    	if err != nil {
    		return "", fmt.Errorf("could not find valid configmap %q from namespace  %q: %v - "+
    			"Use --valuesFile or re-run kube-inject with `-i <istioSystemNamespace> and ensure istio-sidecar-injector configmap exists",
    			injectConfigMapName, ctx.IstioNamespace(), err)
    	}
    
    	valuesData, exists := meshConfigMap.Data[valuesConfigMapKey]
    	if !exists {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 21.6K bytes
    - Viewed (0)
  9. bin/diff_yaml.py

        common = k0s.intersection(k1s)
    
        return added, removed, common
    
    
    def drop_keys(res, k1, k2):
        if k2 in res[k1]:
            del res[k1][k2]
    
    
    def normalize_configmap(res):
        try:
            if res['kind'] != "ConfigMap":
                return res
    
            data = res['data']
    
            # some times keys are yamls...
            # so parse them
            for k in data:
                try:
    Python
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 03 16:14:57 GMT 2021
    - 4.5K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

            secret:
              secretName: istiod-tls
              optional: true
          - name: istio-csr-ca-configmap
            configMap:
              name: istio-ca-root-cert
              defaultMode: 420
              optional: true
      {{- if .Values.pilot.jwksResolverExtraRootCA }}
          - name: extracacerts
            configMap:
              name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
Back to top