Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for buildD (0.05 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	// CIImageRepository is the container registry for core images generated by CI.
    	// Useful for running kubeadm with images from CI builds.
    	// +k8s:conversion-gen=false
    	CIImageRepository string
    
    	// FeatureGates enabled by the user.
    	FeatureGates map[string]bool
    
    	// The cluster name
    	ClusterName string
    
    	// EncryptionAlgorithm holds the type of asymmetric encryption algorithm used for keys and certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName
    }
    
    const defaultSidecar = "default-sidecar"
    
    // DefaultSidecarScopeForGateway builds a SidecarScope contains services and destinationRules for a given gateway/waypoint.
    func DefaultSidecarScopeForGateway(ps *PushContext, configNamespace string) *SidecarScope {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### Build the Docker Image
    
    Now that all the files are in place, let's build the container image.
    
    * Go to the project directory (in where your `Dockerfile` is, containing your `app` directory).
    * Build your FastAPI image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top