Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 254 for configmaps (0.34 sec)

  1. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    		return err
    	}
    
    	// Create the cluster-info ConfigMap with the associated RBAC rules
    	if err := clusterinfophase.CreateBootstrapConfigMapIfNotExists(client, data.KubeConfigPath()); err != nil {
    		return errors.Wrap(err, "error creating bootstrap ConfigMap")
    	}
    	if err := clusterinfophase.CreateClusterInfoRBACRules(client); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

          - name: istio-csr-dns-cert
            secret:
              optional: true
              secretName: istiod-tls
          - configMap:
              defaultMode: 420
              name: istio-ca-root-cert
              optional: true
            name: istio-csr-ca-configmap
    
    ---
    
    
    apiVersion: v1
    kind: Service
    metadata:
      labels:
        app: istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

            secret:
              secretName: istiod-tls
              optional: true
          - name: istio-csr-ca-configmap
            configMap:
              name: istio-ca-root-cert
              defaultMode: 420
              optional: true
      {{- if .Values.pilot.jwksResolverExtraRootCA }}
          - name: extracacerts
            configMap:
              name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. samples/open-telemetry/loki/otel.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: opentelemetry-collector-conf
      labels:
        app: opentelemetry-collector
    data:
      opentelemetry-collector-config: |
        receivers:
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
          attributes:
            actions:
            - action: insert
              key: loki.attribute.labels
              value: pod, namespace,cluster,mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/manifests.go

          dnsPolicy: Default
          volumes:
            - name: config-volume
              configMap:
                name: coredns
                items:
                - key: Corefile
                  path: Corefile
    `
    
    	// CoreDNSConfigMap is the CoreDNS ConfigMap manifest
    	CoreDNSConfigMap = `
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: coredns
      namespace: kube-system
    data:
      Corefile: |
        .:53 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_disable_tracing.golden.yaml

          tracing: {}
        defaultProviders:
          metrics:
          - prometheus
        enablePrometheusMerge: true
        rootNamespace: istio-system
        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
    - 525 bytes
    - Viewed (0)
  7. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

          - name: xtables-lock
            hostPath:
              path: /run/xtables.lock
              type: FileOrCreate
          - name: kube-dns-config
            configMap:
              name: kube-dns
              optional: true
          - name: config-volume
            configMap:
              name: node-local-dns
              items:
                - key: Corefile
                  path: Corefile.base
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

            imagePullPolicy: IfNotPresent
            volumeMounts:
            - name: external-forward-proxy-config
              mountPath: /etc/envoy
          volumes:
          - name: external-forward-proxy-config
            configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  9. samples/open-telemetry/otel.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: opentelemetry-collector-conf
      labels:
        app: opentelemetry-collector
    data:
      opentelemetry-collector-config: |
        receivers:
          opencensus:
            endpoint: 0.0.0.0:55678
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
        exporters:
          zipkin:
            # Export to zipkin for easy querying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. cluster/addons/metrics-server/metrics-server-deployment.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: metrics-server
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: metrics-server-config
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top