Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 184 for Migration (0.3 sec)

  1. cluster/images/etcd/migrate/options.go

    	flags.Uint64Var(&opts.port, "port", 0,
    		"etcd client port to use during migration operations. "+
    			"This should be a different port than typically used by etcd to avoid clients accidentally connecting during upgrade/downgrade operations. "+
    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    		"etcd peer port to use during migration operations. If unset defaults to 2380 or 2381 depending on <data-dir>.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest.go

    package mesh
    
    import (
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ManifestCmd is a group of commands related to manifest generation, installation, diffing and migration.
    func ManifestCmd(ctx cli.Context) *cobra.Command {
    	mc := &cobra.Command{
    		Use:   "manifest",
    		Short: "Commands related to Istio manifests",
    		Long:  "The manifest command generates and diffs Istio manifests.",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/AmbiguousVariantSelectionException.java

    import java.util.Collections;
    
    /**
     * This type is {@code deprecated} and will be removed in Gradle 9.0.
     *
     * This is temporarily available for migration only.
     * This exception class is internal and has been replaced by {@link ArtifactVariantSelectionException}, which is also internal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 21:57:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. manifests/charts/gateway/README.md

    following the guidance below.
    If you are able to, a clean installation is simpler. However, this often requires an external IP migration which can be challenging.
    
    WARNING: when installing over an existing deployment, the two deployments will be merged together by Helm, which may lead to unexpected results.
    
    #### Legacy Gateway Helm charts
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

            exit 1
            ;;
        esac
    
      # Download the CoreDNS migration tool
      echo "== Downloading the CoreDNS migration tool =="
      wget -P "${download_dir}" "https://github.com/coredns/corefile-migration/releases/download/v1.0.17/corefile-tool-${host_arch}" >/dev/null 2>&1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    This may make migrating between the two seem intimidating, but migrations can be surprisingly easy because Gradle follows many of the same conventions as Maven -- such as the <<java_plugin#sec:java_project_layout,standard project structure>> -- and its dependency management works in a similar way.
    
    Here we lay out a series of steps for you to follow that will help facilitate the migration of any Maven build to Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. internal/config/identity/ldap/legacy.go

    	// Lookup bind LDAP service account
    	LookupBindDN       string `json:"lookupBindDN"`
    	LookupBindPassword string `json:"lookupBindPassword"`
    }
    
    // SetIdentityLDAP - One time migration code needed, for migrating from older config to new for LDAPConfig.
    func SetIdentityLDAP(s config.Config, ldapArgs LegacyConfig) {
    	if !ldapArgs.Enabled {
    		// ldap not enabled no need to preserve it in new settings.
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 08 05:12:36 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    * Existing usages of Java serialization should be migrated to use it.
    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

            // It would be better to separate these into different scopes, but many things still assume that daemon services are available in the global scope,
            // so keep them merged as a migration step
            buildProcessState = new BuildProcessState(!configuration.isSingleUse(), AgentStatus.of(configuration.isInstrumentationAgentAllowed()), additionalModuleClassPath, loggingServices, NativeServices.getInstance()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/multilock.go

    import (
    	"bytes"
    	"context"
    	"encoding/json"
    
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    )
    
    const (
    	UnknownLeader = "leaderelection.k8s.io/unknown"
    )
    
    // MultiLock is used for lock's migration
    type MultiLock struct {
    	Primary   Interface
    	Secondary Interface
    }
    
    // Get returns the older election record of the lock
    func (ml *MultiLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top