Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for componentName (0.61 sec)

  1. operator/pkg/component/component.go

    	// Version is the Kubernetes version information.
    	Version *version.Info
    }
    
    // IstioComponent defines the interface for a component.
    type IstioComponent interface {
    	// ComponentName returns the name of the component.
    	ComponentName() name.ComponentName
    	// ResourceName returns the name of the resources of the component.
    	ResourceName() string
    	// Namespace returns the namespace for the component.
    	Namespace() string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. operator/pkg/translate/translate_value.go

    			"{{.ValueComponentName}}.podDisruptionBudget":   "Components.{{.ComponentName}}.K8s.PodDisruptionBudget",
    			"{{.ValueComponentName}}.podAnnotations":        "Components.{{.ComponentName}}.K8s.PodAnnotations",
    			"{{.ValueComponentName}}.priorityClassName":     "Components.{{.ComponentName}}.K8s.PriorityClassName",
    			"{{.ValueComponentName}}.readinessProbe":        "Components.{{.ComponentName}}.K8s.ReadinessProbe",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    }
    
    // renderFeatureComponentPathTemplate renders a template of the form <path>{{.ComponentName}}<path> with
    // the supplied parameters.
    func renderFeatureComponentPathTemplate(tmpl string, componentName name.ComponentName) (string, error) {
    	type Temp struct {
    		ComponentName name.ComponentName
    	}
    	ts := Temp{
    		ComponentName: componentName,
    	}
    	return util.RenderTemplate(tmpl, ts)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/prune.go

    	h.opts.Log.LogAndPrintf("  Removed %s.", oh)
    	return nil
    }
    
    // RemoveObject removes object with objHash in componentName from the object cache.
    func (h *HelmReconciler) removeFromObjectCache(componentName, objHash string) {
    	crHash, err := h.getCRHash(componentName)
    	if err != nil {
    		scope.Error(err.Error())
    	}
    	cache.RemoveObject(crHash, objHash)
    	scope.Infof("Removed object %s from Cache.", objHash)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/manifests.go

    			} else {
    				if usersAndGroups != nil {
    					if err := staticpodutil.RunComponentAsNonRoot(componentName, &spec, usersAndGroups, cfg); err != nil {
    						return errors.Wrapf(err, "failed to run component %q as non-root", componentName)
    					}
    				}
    			}
    		}
    
    		// if patchesDir is defined, patch the static Pod manifest
    		if patchesDir != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/reconciler.go

    // Otherwise, if the map key/value is missing, one is created.
    func setStatus(s map[string]*v1alpha1.InstallStatus_VersionStatus, componentName name.ComponentName, status v1alpha1.InstallStatus_Status, err error) {
    	cn := string(componentName)
    	if status == v1alpha1.InstallStatus_NONE {
    		delete(s, cn)
    		return
    	}
    	if _, ok := s[cn]; !ok {
    		s[cn] = &v1alpha1.InstallStatus_VersionStatus{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants_test.go

    		)
    	}
    }
    
    func TestGetStaticPodFilepath(t *testing.T) {
    	var tests = []struct {
    		componentName, manifestsDir, expected string
    	}{
    		{
    			componentName: "kube-apiserver",
    			manifestsDir:  "/etc/kubernetes/manifests",
    			expected:      "/etc/kubernetes/manifests/kube-apiserver.yaml",
    		},
    		{
    			componentName: "kube-controller-manager",
    			manifestsDir:  "/etc/kubernetes/manifests/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Dimensions.java

        private static <T> Collection<T> extractAndValidate(String propertyName, String componentName, SetProperty<T> declared) {
            declared.finalizeValue();
            Collection<T> value = declared.get();
            assertNonEmpty(propertyName, componentName, value);
            return value;
        }
    
        private static void assertNonEmpty(String propertyName, String componentName, Collection<?> property) {
            if (property.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        public static <T> T getComponent(final String componentName) {
            try {
                return SingletonLaContainer.getComponent(componentName);
            } catch (final NullPointerException e) {
                if (logger.isDebugEnabled()) {
                    throw new ContainerNotAvailableException(componentName, e);
                }
                throw new ContainerNotAvailableException(componentName);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return errors.Wrapf(err, "failed to marshal manifest for %q to YAML", componentName)
    	}
    
    	filename := kubeadmconstants.GetStaticPodFilepath(componentName, manifestDir)
    
    	if err := os.WriteFile(filename, serialized, 0600); err != nil {
    		return errors.Wrapf(err, "failed to write static pod manifest file for %q (%q)", componentName, filename)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top