Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 325 for configmap (1.6 sec)

  1. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	}
    
    	if printManifest {
    		return configMapBytes, nil
    	}
    
    	kubeproxyConfigMap := &v1.ConfigMap{}
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), configMapBytes, kubeproxyConfigMap); err != nil {
    		return []byte(""), errors.Wrap(err, "unable to decode kube-proxy configmap")
    	}
    
    	if !kubeProxyCfg.IsUserSupplied() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/controller/apis/config/v1alpha1/defaults_test.go

    	}
    }
    
    // convertObjToConfigMap converts an object to a ConfigMap.
    // This is specifically meant for ComponentConfigs.
    func convertObjToConfigMap(name string, obj runtime.Object) (*v1.ConfigMap, error) {
    	eJSONBytes, err := json.Marshal(obj)
    	if err != nil {
    		return nil, err
    	}
    	cm := &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Data: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 04 11:39:35 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. tests/integration/security/fuzz/backends/apache/apache.yaml

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: public-html
    data:
      secret.html: |
        <!DOCTYPE html>
        <html lang="en">
        <body>
        secret_data_leaked
        </body>
        </html>
    ---
    apiVersion: v1
    kind: ServiceAccount
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 15:40:48 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/apply_test.go

    		wantErr      bool
    	}{
    		{
    			name:  "creates if not present",
    			input: "testdata/configmap.yaml",
    			want:  "testdata/configmap.yaml",
    		},
    		{
    			name:         "updates if present",
    			currentState: "testdata/configmap.yaml",
    			input:        "testdata/configmap-changed.yaml",
    			want:         "testdata/configmap-changed.yaml",
    		},
    		// Test IstioOperator field removals
    		{
    			name:  "creates if not present",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/config/analysis/local/analyze_test.go

    		{
    			name: "istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "sidecar cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio-sidecar-injector",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "not istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/proxy/manifests.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    const (
    	// KubeProxyConfigMap19 is the proxy ConfigMap manifest for Kubernetes 1.9 and above
    	KubeProxyConfigMap19 = `
    kind: ConfigMap
    apiVersion: v1
    metadata:
      name: {{ .ProxyConfigMap }}
      namespace: kube-system
      labels:
        app: kube-proxy
    data:
      kubeconfig.conf: |-
        apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 06:51:57 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. samples/ratelimit/rate-limit-service.yaml

    ##################################################################################################
    # Redis service and deployment
    # Ratelimit service and deployment
    
    # Note: a configmap is needed to make the rate limit deployment work properly, for example:
    #
    #  apiVersion: v1
    #  kind: ConfigMap
    #  metadata:
    #    name: ratelimit-config
    #  data:
    #    config.yaml: |
    #      domain: echo-ratelimit
    #      descriptors:
    #        - key: PATH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/checksums.go

    func SignConfigMap(cm *v1.ConfigMap) {
    	if cm.Annotations == nil {
    		cm.Annotations = map[string]string{}
    	}
    	cm.Annotations[constants.ComponentConfigHashAnnotationKey] = ChecksumForConfigMap(cm)
    }
    
    // VerifyConfigMapSignature returns true if the config map has checksum annotation and it matches; false otherwise
    func VerifyConfigMapSignature(cm *v1.ConfigMap) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.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: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.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
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top