Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for deploying (0.22 sec)

  1. samples/helloworld/README.md

    ```bash
    kubectl apply -f helloworld.yaml
    ```
    
    Alternatively, you can run just one version at a time by first defining the service:
    
    ```bash
    kubectl apply -f helloworld.yaml -l service=helloworld
    ```
    
    and then deploying version v1, v2, or both:
    
    ```bash
    kubectl apply -f helloworld.yaml -l version=v1
    kubectl apply -f helloworld.yaml -l version=v2
    ```
    
    For even more flexibility, there is also a script, `gen-helloworld.sh`, that will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    	})
    	c.namespaces = kclient.NewFiltered[*v1.Namespace](kubeClient, kclient.Filter{
    		ObjectFilter: kube.FilterIfEnhancedFilteringEnabled(kubeClient),
    	})
    	// kube-system is not skipped to enable deploying ztunnel in that namespace
    	c.ignoredNamespaces = inject.IgnoredNamespaces.Copy().Delete(constants.KubeSystemNamespace)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                                        + now
                                        + ", lastUpdated = " + lastUpdated + "). Please verify that the clocks of all"
                                        + " deploying machines are reasonably synchronized.");
                        versioning.setLastUpdated(now);
                        changed = true;
                    }
                }
            }
    
            if (changed) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/plugin/plugin.go

    //     to ensure that the various parts of the program be made available
    //     in the correct location in the file system (or container image).
    //     By contrast, deploying an application consisting of a single static
    //     executable is straightforward.
    //
    //   - Reasoning about program initialization is more difficult when
    //     some packages may not be initialized until long after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. pkg/test/env/istio.go

    	VARIANT Variable = "VARIANT"
    
    	// PULL_POLICY is the image pull policy to use when rendering templates.
    	// nolint: revive, stylecheck
    	PULL_POLICY Variable = "PULL_POLICY"
    
    	// ECHO_IMAGE is the image to use when deploying echo services.
    	// nolint: golint, revive, stylecheck
    	ECHO_IMAGE Variable = "ECHO_IMAGE"
    
    	// GRPC_ECHO_IMAGE is the image to use for a separate gRPC-only container in echo Pods.
    	// nolint: golint, revive, stylecheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. README.md

    ## Adopters
    
    The [User Case Studies](https://kubernetes.io/case-studies/) website has real-world use cases of organizations across industries that are deploying/migrating to Kubernetes.
    
    ## Governance 
    
    Kubernetes project is governed by a framework of principles, values, policies and processes to help our community and constituents towards our shared goals.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    					scopes.Framework.Errorf("failed updating namespace %s on cluster %s. This can happen when deploying "+
    						"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    				}
    			} else {
    				scopes.Framework.Errorf("failed creating namespace %s on cluster %s. This can happen when deploying "+
    					"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/multiplecontrolplanes/main_test.go

    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMultiPrimary().
    		// Requires two CPs with specific names to be configured.
    		Label(label.CustomSetup).
    		// We are deploying two isolated environments, which CNI doesn't support.
    		// We could deploy one of the usergroups as the CNI owner, but for now we skip
    		SkipIf("CNI is not suppored", func(ctx resource.Context) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    # FastAPI in Containers - Docker
    
    When deploying FastAPI applications a common approach is to build a **Linux container image**. It's normally done using <a href="https://www.docker.com/" class="external-link" target="_blank">**Docker**</a>. You can then deploy that container image in one of a few possible ways.
    
    Using Linux containers has several advantages including **security**, **replicability**, **simplicity**, and others.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/settings.go

    	// packages. For example: `go test $(go list ./... | grep -v bad-package)`.
    	SkipString  ArrayFlags
    	SkipMatcher *Matcher
    
    	// SkipWorkloadClasses can be used to skip deploying special workload types like TPROXY, VMs, etc.
    	SkipWorkloadClasses ArrayFlags
    
    	// OnlyWorkloadClasses can be used to only deploy specific workload types like TPROXY, VMs, etc.
    	OnlyWorkloadClasses ArrayFlags
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top