Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 325 for configmap (0.23 sec)

  1. hack/testdata/configmap.yaml

    apiVersion: v1
    data:
      key-1: value-1
      key-2: value-2
    kind: ConfigMap
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 25 12:37:46 UTC 2017
    - 108 bytes
    - Viewed (0)
  2. 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: |-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. 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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. hack/testdata/kustomize/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: the-map
    data:
      altGreeting: "Good Morning!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:31:03 UTC 2019
    - 117 bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/testdata/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      creationTimestamp: null
      name: config
      namespace: istio-system
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 16:53:35 UTC 2021
    - 127 bytes
    - Viewed (0)
  6. cmd/kubeadm/test/resources/configmap.go

    // FakeConfigMap represents a fake config map
    type FakeConfigMap struct {
    	Name string
    	Data map[string]string
    }
    
    // Create creates a fake configmap using the provided client
    func (c *FakeConfigMap) Create(client clientset.Interface) error {
    	return apiclient.CreateOrUpdateConfigMap(client, &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      c.Name,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: c.Data,
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. hack/testdata/diff/configmap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 11 17:19:52 UTC 2018
    - 54 bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/kustomization/configMap.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: the-map
    data:
      altGreeting: "Good Morning!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:29:27 UTC 2019
    - 117 bytes
    - Viewed (0)
  9. 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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. 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" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
Back to top