Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 267 for configmaps (0.2 sec)

  1. api/openapi-spec/v3/apis__apps__v1_openapi.json

              "optional": {
                "description": "optional specify whether the ConfigMap or its keys must be defined",
                "type": "boolean"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.ConfigMapVolumeSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

          - emptyDir: {}
            name: credential-socket
          - emptyDir: {}
            name: workload-certs
    {{- if eq .Values.global.pilotCertProvider "istiod" }}
          - name: istiod-ca-cert
            configMap:
              name: istio-ca-root-cert
    {{- end }}
          - name: podinfo
            downwardAPI:
              items:
                - path: "labels"
                  fieldRef:
                    fieldPath: metadata.labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/upgrade/apply.go

    //   - Uploads the newly used configuration to the cluster ConfigMap
    //   - Creating the RBAC rules for the bootstrap tokens and the cluster-info ConfigMap
    //   - Applying new CoreDNS and kube-proxy manifests
    func runApply(flagSet *pflag.FlagSet, flags *applyFlags, args []string) error {
    
    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. operator/pkg/compare/compare.go

    		return err.Error()
    	}
    
    	if kind := ao["kind"]; kind == "ConfigMap" {
    		if err := UnmarshalInlineYaml(ao, "data"); err != nil {
    			log.Warnf("Unable to unmarshal ConfigMap Data, error: %v", err)
    		}
    	}
    	if kind := bo["kind"]; kind == "ConfigMap" {
    		if err := UnmarshalInlineYaml(bo, "data"); err != nil {
    			log.Warnf("Unable to unmarshal ConfigMap Data, error: %v", err)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

          "description": "EnvFromSource represents the source of a set of ConfigMaps",
          "properties": {
            "configMapRef": {
              "$ref": "#/definitions/io.k8s.api.core.v1.ConfigMapEnvSource",
              "description": "The ConfigMap to select from"
            },
            "prefix": {
              "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/kube-dns.yaml.in

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: kube-dns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. cluster/addons/dns/kube-dns/kube-dns.yaml.base

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: kube-dns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. tests/integration/security/filebased_tls_origination/main_test.go

    			Version: "v1",
    			// Set up custom annotations to mount the certs. We will re-use the configmap created by "server"
    			// so that we don't need to manage it ourselves.
    			// The paths here match the destination rule above
    			Annotations: map[string]string{
    				annotation.SidecarUserVolume.Name:      `{"custom-certs":{"configMap":{"name":"server-certs"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/constants/constants.go

    	// KubeadmConfigConfigMap specifies in what ConfigMap in the kube-system namespace the `kubeadm init` configuration should be stored
    	KubeadmConfigConfigMap = "kubeadm-config"
    
    	// ClusterConfigurationConfigMapKey specifies in what ConfigMap key the cluster configuration should be stored
    	ClusterConfigurationConfigMapKey = "ClusterConfiguration"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. cluster/addons/dns/kube-dns/kube-dns.yaml.sed

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kube-dns
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: EnsureExists
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: kube-dns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top