Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 154 for configMaps (0.47 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                configParameterMap = ParameterUtil.createConfigParameterMap(getConfigParameter());
            }
    
            final Map<String, String> configMap = configParameterMap.get(name);
            if (configMap == null) {
                return Collections.emptyMap();
            }
            return configMap;
        }
    
        @Override
        public String getId() {
            return asDocMeta().id();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/cluster.go

    	}
    
    	// gets ClusterConfiguration from kubeadm-config
    	clusterConfigurationData, ok := configMap.Data[constants.ClusterConfigurationConfigMapKey]
    	if !ok {
    		return nil, errors.Errorf("unexpected error when reading kubeadm-config ConfigMap: %s key value pair missing", constants.ClusterConfigurationConfigMapKey)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

        }
    
        protected void processMetaRobots(final ResponseData responseData, final ResultData resultData, final Document document) {
            final Map<String, String> configMap = getConfigPrameterMap(responseData, ConfigName.CONFIG);
            final String ignore = configMap.get(Config.IGNORE_ROBOTS_TAGS);
            if (ignore == null) {
                if (fessConfig.isCrawlerIgnoreRobotsTags()) {
                    return;
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph.go

    		g.graph.SetEdge(e)
    		g.addEdgeToDestinationIndex_locked(e)
    		return true
    	})
    
    	podutil.VisitPodConfigmapNames(pod, func(configmap string) bool {
    		configmapVertex := g.getOrCreateVertex_locked(configMapVertexType, pod.Namespace, configmap)
    		e := newDestinationEdge(configmapVertex, podVertex, nodeVertex)
    		g.graph.SetEdge(e)
    		g.addEdgeToDestinationIndex_locked(e)
    		return true
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K 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. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
              name: istio-ca-root-cert
            name: istiod-ca-cert
    status: {}
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello-v2
    spec:
      replicas: 3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top