Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 254 for configmaps (1.03 sec)

  1. operator/pkg/object/testdata/well-formed-with-space.yaml

    # there are some spaces at the end
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 182 bytes
    - Viewed (0)
  2. operator/pkg/object/testdata/well-formed-with-comments.out.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 193 bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins.go

    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    	"k8s.io/kubernetes/pkg/volume/csi"
    	"k8s.io/kubernetes/pkg/volume/downwardapi"
    	"k8s.io/kubernetes/pkg/volume/emptydir"
    	"k8s.io/kubernetes/pkg/volume/fc"
    	"k8s.io/kubernetes/pkg/volume/flexvolume"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. operator/pkg/object/testdata/well-formed-with-comments.yaml

    # some random comments
     # some random comments
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default # some random comments should be deleted
    data:
      mydata: |-
        First line of data # some random comments should not be deleted
        Second line of data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 304 bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/pilot_merge_meshconfig.golden.yaml

          - prometheus
        enablePrometheusMerge: true
        outboundTrafficPolicy:
          mode: REGISTRY_ONLY
        rootNamespace: istio-control
        trustDomain: cluster.local
      meshNetworks: 'networks: {}'
    kind: ConfigMap
    metadata:
      labels:
        install.operator.istio.io/owning-resource: unknown
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istio
      namespace: istio-system
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 743 bytes
    - Viewed (0)
  6. manifests/addons/gen.sh

      echo -e "\n---\n"
      kubectl create configmap -n istio-system istio-grafana-dashboards \
        --dry-run=client -oyaml \
        --from-file=pilot-dashboard.json="${TMP}/pilot-dashboard.gen.json" \
        --from-file=ztunnel-dashboard.json="${TMP}/ztunnel-dashboard.gen.json" \
        --from-file=istio-performance-dashboard.json="${TMP}/istio-performance-dashboard.json"
    
      echo -e "\n---\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. cluster/addons/dns/coredns/coredns.yaml.base

    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:coredns
    subjects:
    - kind: ServiceAccount
      name: coredns
      namespace: kube-system
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: coredns
      namespace: kube-system
      labels:
          addonmanager.kubernetes.io/mode: EnsureExists
    data:
      Corefile: |
        .:53 {
            errors
            health {
                lameduck 5s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. cluster/addons/addon-manager/CHANGELOG.md

    ### Version 6.4-alpha.1 (Wed February 1 2017 Zihong Zheng <******@****.***>)
     - Update kubectl to v1.6.0-alpha.1 for supporting optional ConfigMap.
    
    ### Version 6.3 (Fri January 27 2017 Lucas Käldström <******@****.***>)
     - Updated the arm base image to `armhf/busybox` and now using qemu v2.7 for emulation.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. cluster/addons/dns/coredns/coredns.yaml.in

    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:coredns
    subjects:
    - kind: ServiceAccount
      name: coredns
      namespace: kube-system
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: coredns
      namespace: kube-system
      labels:
          addonmanager.kubernetes.io/mode: EnsureExists
    data:
      Corefile: |
        .:53 {
            errors
            health {
                lameduck 5s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 23:50:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/volume_host.go

    		return nil, fmt.Errorf("GetSecret unsupported in PersistentVolumeController")
    	}
    }
    
    func (ctrl *PersistentVolumeController) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    	return func(_, _ string) (*v1.ConfigMap, error) {
    		return nil, fmt.Errorf("GetConfigMap unsupported in PersistentVolumeController")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top