Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 614 for deploys (0.13 sec)

  1. helm/minio/README.md

    ## Introduction
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/util/util.go

    	b := ctx.ConfigIstio().New()
    	for _, c := range config {
    		b.Eval(ns.Name(), c, vsTemplate)
    		b.Eval(ns.Name(), c, gwTemplate)
    	}
    	b.ApplyOrFail(ctx)
    }
    
    // RunTestMultiMtlsGateways deploys multiple mTLS gateways with SDS enabled, and creates kubernetes secret that stores
    // private key, server certificate and CA certificate for each mTLS gateway. Verifies that all gateways are able to terminate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. src/net/internal/socktest/switch.go

    // returns the non-nil error.
    type AfterFilter func(*Status) error
    
    func (f AfterFilter) apply(st *Status) error {
    	if f == nil {
    		return nil
    	}
    	return f(st)
    }
    
    // Set deploys the socket system call filter f for the filter type t.
    func (sw *Switch) Set(t FilterType, f Filter) {
    	sw.once.Do(sw.init)
    	sw.fmu.Lock()
    	sw.fltab[t] = f
    	sw.fmu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    func build(b *builder) (out echo.Instances, err error) {
    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy echo instances ===")
    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy echo instances ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy echo instances in %v ===", time.Since(start))
    		}
    	}()
    
    	// load additional configs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. tests/integration/security/sds_ingress/ingress_test.go

    							ingressutil.SendRequestOrFail(t, ing, host, credName, ingressutil.Mtls, tlsContext,
    								ingressutil.ExpectedResponse{StatusCode: http.StatusOK})
    						})
    					})
    			}
    		})
    }
    
    // TestTlsGateways deploys multiple TLS gateways with SDS enabled, and creates kubernetes that store
    // private key and server certificate for each TLS gateway. Verifies that all gateways are able to terminate
    // SSL connections successfully.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. cluster/gce/windows/smoke-test.sh

      ${kubectl} delete deployment "$windows_webserver_deployment"
    }
    
    windows_command_deployment=windows-powershell
    windows_command_pod_label=powershell
    windows_command_replicas=1
    
    # Deploys a multi-arch Windows pod capable of running PowerShell.
    function deploy_windows_command_pod {
      echo "Writing example deployment to $windows_command_deployment.yaml"
      cat <<EOF > $windows_command_deployment.yaml
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/ingress_test.go

    					c.call.Retry.Options = []retry.Option{retry.Timeout(time.Minute)}
    					defaultIngress.CallOrFail(t, c.call)
    				})
    			}
    		})
    }
    
    // TestCustomGateway deploys a simple gateway deployment, that is fully injected, and verifies it can startup and send traffic
    func TestCustomGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    		podSpec = &pod.Spec
    	case *appsv1.Deployment: // Added to be explicit about the most expected case
    		deploy := v
    		typeMeta = deploy.TypeMeta
    		deploymentMetadata = config.NamespacedName(deploy)
    		metadata = &deploy.Spec.Template.ObjectMeta
    		podSpec = &deploy.Spec.Template.Spec
    	default:
    		// `in` is a pointer to an Object. Dereference it.
    		outValue := reflect.ValueOf(out).Elem()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. helm-releases/minio-3.3.3.tgz

    ---------- ```bash helm repo add minio https://charts.min.io/ ``` Installing the Chart ---------- Install this chart using: ```bash helm install --namespace minio --set rootUser=rootuser,rootPassword=rootpass123 --generate-name minio/minio ``` The command deploys MinIO on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. Upgrading the Chart ---------- You can use Helm to update MinIO version in a...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 11 17:28:02 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. helm-releases/minio-3.4.7.tgz

    ---------- ```bash helm repo add minio https://charts.min.io/ ``` Installing the Chart ---------- Install this chart using: ```bash helm install --namespace minio --set rootUser=rootuser,rootPassword=rootpass123 --generate-name minio/minio ``` The command deploys MinIO on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation. Upgrading the Chart ---------- You can use Helm to update MinIO version in a...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 25 20:49:24 UTC 2022
    - 15.2K bytes
    - Viewed (0)
Back to top