Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 350 for deploymentID (0.18 sec)

  1. pkg/config/analysis/analyzers/util/in_mesh.go

    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/slices"
    )
    
    // DeploymentInMesh returns true if deployment is in the service mesh (has sidecar)
    func DeploymentInMesh(r *resource.Instance, c analysis.Context) bool {
    	d := r.Message.(*appsv1.DeploymentSpec)
    	return inMesh(d.Template.Annotations, d.Template.Labels,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. samples/helloworld/src/Dockerfile

      && rm -rf /var/lib/apt/lists/*
    
    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    # image will bind on TCP6 by default. In k8s pod spec (in a deployment pod template most likely) override for explicit IPv4 if needed with the command shown below:
    # ["gunicorn", "-b", "[0.0.0.0]:5000", "app:app", "-k", "gevent"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2-mysql-vm
      labels:
        app: ratings
        version: v2-mysql-vm
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2-mysql-vm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    					return i
    				}
    			}
    		}
    	}
    	return -1
    }
    
    // Legacy returns 'true' if the MinIO server commandline was
    // provided with no ellipses pattern, those are considered
    // legacy deployments.
    func (l EndpointServerPools) Legacy() bool {
    	return len(l) == 1 && l[0].Legacy
    }
    
    // Add add pool endpoints
    func (l *EndpointServerPools) Add(zeps PoolEndpoints) error {
    	existSet := set.NewStringSet()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. docs/distributed/CONFIG.md

    that we can provide horizontal distribution, however we have come across situations where sometimes this is not feasible and there are no easier alternatives without modifying /etc/hosts on the host system as root user.  Many times in airgapped deployments this is not allowed or requires audits and approvals.
    
    MinIO server configuration file allows users to provide topology that allows for heterogeneous hostnames, allowing MinIO to deployed in pre-existing environments without any further OS...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-ratings.yaml

    kind: Service
    metadata:
      name: ratings
      labels:
        app: ratings
        service: ratings
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: ratings
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v1
      labels:
        app: ratings
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v1
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation_test.go

    				field != "metadata.labels" {
    				t.Errorf("%s: missing prefix for: %v", k, errs[i])
    			}
    		}
    	}
    }
    
    func validDeployment(tweaks ...func(d *apps.Deployment)) *apps.Deployment {
    	d := &apps.Deployment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "abc",
    			Namespace: metav1.NamespaceDefault,
    		},
    		Spec: apps.DeploymentSpec{
    			Selector: &metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/default_storage_factory_builder.go

    	storageFactory.AddCohabitatingResources(networking.Resource("networkpolicies"), extensions.Resource("networkpolicies"))
    	storageFactory.AddCohabitatingResources(apps.Resource("deployments"), extensions.Resource("deployments"))
    	storageFactory.AddCohabitatingResources(apps.Resource("daemonsets"), extensions.Resource("daemonsets"))
    	storageFactory.AddCohabitatingResources(apps.Resource("replicasets"), extensions.Resource("replicasets"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__apps__v1_openapi.json

              "paused": {
                "description": "Indicates that the deployment is paused.",
                "type": "boolean"
              },
              "progressDeadlineSeconds": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

    import org.gradle.cache.internal.scopes.DefaultBuildTreeScopedCacheBuilderFactory;
    import org.gradle.cache.scopes.BuildTreeScopedCacheBuilderFactory;
    import org.gradle.deployment.internal.DefaultDeploymentRegistry;
    import org.gradle.deployment.internal.PendingChangesManager;
    import org.gradle.groovy.scripts.internal.DefaultScriptSourceHasher;
    import org.gradle.groovy.scripts.internal.ScriptSourceHasher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top