Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 160 for configmaps (0.33 sec)

  1. pkg/volume/plugins.go

    	// Returns a function that returns a secret.
    	GetSecretFunc() func(namespace, name string) (*v1.Secret, error)
    
    	// Returns a function that returns a configmap.
    	GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error)
    
    	GetServiceAccountTokenFunc() func(namespace, name string, tr *authenticationv1.TokenRequest) (*authenticationv1.TokenRequest, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        deploymentLabels: {}
    
        ## Mesh config settings
    
        # Install the mesh config map, generated from values.yaml.
        # If false, pilot wil use default values (by default) or user-supplied values.
        configMap: true
    
        # Additional labels to apply on the pod level for monitoring and logging configuration.
        podLabels: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

                  path: /api/health
                  port: 3000
          volumes:
            - name: config
              configMap:
                name: grafana
            - name: dashboards-istio
              configMap:
                name: istio-grafana-dashboards
            - name: dashboards-istio-services
              configMap:
                name: istio-services-grafana-dashboards
            - name: storage
              emptyDir: {}
    
    ---
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        deploymentLabels: {}
        ## Mesh config settings
    
        # Install the mesh config map, generated from values.yaml.
        # If false, pilot wil use default values (by default) or user-supplied values.
        configMap: false
        # Additional labels to apply on the pod level for monitoring and logging configuration.
        podLabels: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_ComponentStatusList proto.InternalMessageInfo
    
    func (m *ConfigMap) Reset()      { *m = ConfigMap{} }
    func (*ConfigMap) ProtoMessage() {}
    func (*ConfigMap) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{22}
    }
    func (m *ConfigMap) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ConfigMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Added an extra line between two different key value pairs under data when running kubectl describe configmap ([#123597](https://github.com/kubernetes/kubernetes/pull/123597), [@siddhantvirus](https://github.com/siddhantvirus)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    	t.Run("Kubernetes defaults", func(t *testing.T) {
    		// XDS and CA are both using JWT authentication and TLS. Root certificates distributed in
    		// configmap to each namespace.
    		Setup(t).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    	})
    	t.Run("RSA", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Configuration settings passed to Pilot as a ConfigMap.
    	//
    	// This controls whether the mesh config map, generated from values.yaml is generated.
    	// If false, pilot wil use default values or user-supplied values, in that order of preference.
    	ConfigMap *wrapperspb.BoolValue `protobuf:"bytes,18,opt,name=configMap,proto3" json:"configMap,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    	configMapColumnDefinitions := []metav1.TableColumnDefinition{
    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Data", Type: "string", Description: apiv1.ConfigMap{}.SwaggerDoc()["data"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(configMapColumnDefinitions, printConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Kubeadm: do not upload kubelet patch configuration into `kube-system/kubelet-config` ConfigMap ([#123107](https://github.com/kubernetes/kubernetes/pull/123107), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top