Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,570 for setupCa (0.37 sec)

  1. pkg/istio-agent/agent_test.go

    		// configmap to each namespace.
    		Setup(t).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    	})
    	t.Run("RSA", func(t *testing.T) {
    		// All of the other tests use ECC for speed. Here we make sure RSA still works
    		Setup(t, func(a AgentTest) AgentTest {
    			a.Security.ECCSigAlg = ""
    			a.Security.WorkloadRSAKeySize = 2048
    			return a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/setup.go

    //   - b/to_a/from_cluster-1
    //     ...
    func (t *T) Setup(setupFn srcSetupFn) *T {
    	t.sourceDeploymentSetup = append(t.sourceDeploymentSetup, setupFn)
    	return t
    }
    
    func (t *T) setup(ctx framework.TestContext, from echo.Callers) {
    	if !t.hasSourceSetup() {
    		ctx.SkipDumping()
    		scopes.Framework.Debugf("No echotest setup; skipping test dump at this scope.")
    	}
    	for _, setupFn := range t.sourceDeploymentSetup {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/setup.go

    package resource
    
    // SetupFn is a function used for performing setup actions.
    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    // Note: function may be called multiple times during the setup process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  4. ci/official/utilities/setup.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Common setup for all TF scripts.
    #
    # Make as FEW changes to this file as possible. It should not contain utility
    # functions (except for tfrun); use dedicated scripts instead and reference them
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/setup.packages.sh

    # limitations under the License.
    # ==============================================================================
    #
    # setup.packages.sh: Given a list of Ubuntu packages, install them and clean up.
    # Usage: setup.packages.sh <package_list.txt>
    set -e
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/setup.python.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    set -xe
    
    source ~/.bashrc
    VERSION=$1
    REQUIREMENTS=$2
    
    add-apt-repository ppa:deadsnakes/ppa
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.sources.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # setup.python.sh: Install a specific Python version and packages for it.
    # Usage: setup.python.sh <pyversion> <requirements.txt>
    
    # Sets up custom apt sources for our TF images.
    
    # Prevent apt install tzinfo from asking our location (assumes UTC)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
        # Execute functions manually or run configure.ps1.
    #>
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. pkg/test/framework/suite.go

    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    	// SetupParallel runs the given setup functions in parallel before test execution.
    	SetupParallel(fns ...resource.SetupFn) Suite
    	// Run the suite. This method calls os.Exit and does not return.
    	Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pkg/volume/git_repo/git_repo.go

    	}
    }
    
    // SetUp creates new directory and clones a git repo.
    func (b *gitRepoVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    // SetUpAt creates new directory and clones a git repo.
    func (b *gitRepoVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	if volumeutil.IsReady(b.getMetaDir()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top