Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 255 for configmaps (0.39 sec)

  1. 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)
  2. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 920 bytes
    - Viewed (0)
  4. releasenotes/notes/scope-root-ca-configmap.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Updated** `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces where istiod creates istio-ca-root-cert configmap
         if `ENABLE_ENHANCED_RESOURCE_SCOPING` feature flag is enabled.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 17 16:44:10 UTC 2022
    - 383 bytes
    - Viewed (0)
  5. 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" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K 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" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.ConfigMap.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 427 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ConfigMap.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 427 bytes
    - Viewed (0)
  9. security/pkg/k8s/configutil.go

    )
    
    // InsertDataToConfigMap inserts a data to a configmap in a namespace.
    // client: the k8s client interface.
    // lister: the configmap lister.
    // meta: the metadata of configmap.
    // caBundle: ca cert data bytes.
    func InsertDataToConfigMap(client kclient.Client[*v1.ConfigMap], meta metav1.ObjectMeta, caBundle []byte) error {
    	configmap := client.Get(meta.Name, meta.Namespace)
    	if configmap == nil {
    		// Create a new ConfigMap.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/registry/core/configmap/strategy.go

    func dropDisabledFields(configMap *api.ConfigMap, oldConfigMap *api.ConfigMap) {
    }
    
    func (strategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    // GetAttrs returns labels and fields of a given object for filtering purposes.
    func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, error) {
    	configMap, ok := obj.(*api.ConfigMap)
    	if !ok {
    		return nil, nil, fmt.Errorf("not a configmap")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top