Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 320 for configmap3 (0.14 sec)

  1. 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)
  2. operator/pkg/helmreconciler/testdata/configmap-changed.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      creationTimestamp: null
      name: config
      namespace: istio-system
    data:
      # Can't delete a field until we mandate >= Kube 1.16. See ApplyObject comments.
      field: two
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 16:53:35 UTC 2021
    - 220 bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/forward-proxy/configmap.tmpl.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: external-forward-proxy-config
    data:
      envoy.yaml: |-
    {{ .envoyYaml | indent 4 }}
      external-forward-proxy-key.pem: |-
    {{ .keyPem | indent 4 }}
      external-forward-proxy-cert.pem: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 256 bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/configmap-cni.yaml

    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: {{ template "name" . }}-config
      namespace: {{ .Release.Namespace }}
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/kube/watcher/configmapwatcher/configmapwatcher.go

    )
    
    // Controller watches a ConfigMap and calls the given callback when the ConfigMap changes.
    // The ConfigMap is passed to the callback, or nil if it doesn't exist.
    type Controller struct {
    	configmaps kclient.Client[*v1.ConfigMap]
    	queue      controllers.Queue
    
    	configMapNamespace string
    	configMapName      string
    	callback           func(*v1.ConfigMap)
    
    	hasSynced atomic.Bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 07:11:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ConfigMap.json

    {
      "kind": "ConfigMap",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. tests/integration/telemetry/policy/testdata/rate-limit-configmap.yaml

    #   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.
    
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: ratelimit-config
    data:
      config.yaml: |
        domain: echo-ratelimit
        descriptors:
          - key: PATH
            value: "/"
            rate_limit:
              unit: minute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 15 19:50:52 UTC 2021
    - 901 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ConfigMap.yaml

    apiVersion: v1
    binaryData:
      binaryDataKey: Aw==
    data:
      dataKey: dataValue
    immutable: true
    kind: ConfigMap
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 920 bytes
    - Viewed (0)
  9. pkg/controlplane/controller/legacytokentracking/controller_test.go

    				core.NewCreateAction(schema.GroupVersionResource{Version: "v1", Resource: "configmaps"}, metav1.NamespaceSystem, &corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Namespace: metav1.NamespaceSystem, Name: ConfigMapName},...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. pkg/kubelet/configmap/configmap_manager.go

    )
    
    // Manager interface provides methods for Kubelet to manage ConfigMap.
    type Manager interface {
    	// Get configmap by configmap namespace and name.
    	GetConfigMap(namespace, name string) (*v1.ConfigMap, error)
    
    	// WARNING: Register/UnregisterPod functions should be efficient,
    	// i.e. should not block on network operations.
    
    	// RegisterPod registers all configmaps from a given pod.
    	RegisterPod(pod *v1.Pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top