Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for deployments (0.24 sec)

  1. docs/en/docs/deployment/concepts.md

    <img class="shadow" src="/img/deployment/concepts/image01.png">
    
    ---
    
    Now that we know the difference between the terms **process** and **program**, let's continue talking about deployments.
    
    ## Running on Startup
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  3. istioctl/pkg/precheck/precheck.go

    	return nil
    }
    
    func checkPilot(cli kube.CLIClient, namespace string, messages *diag.Messages) error {
    	deployments, err := cli.Kube().AppsV1().Deployments(namespace).List(context.TODO(), metav1.ListOptions{
    		LabelSelector: "app=istiod",
    	})
    	if err != nil {
    		return err
    	}
    	for _, deployment := range deployments.Items {
    		scopingImpacted := false
    
    		// Obtain configmap to verify if affected features are used
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
              {{- else if .Values.meshConfig.trustDomain }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (1)
  5. manifests/addons/gen.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    set -eux
    
    # This script sets up the plain text rendered deployments for addons
    # See samples/addons/README.md for more information
    
    ADDONS="${WD}/../../samples/addons"
    DASHBOARDS="${WD}/dashboards"
    mkdir -p "${ADDONS}"
    TMP=$(mktemp -d)
    LOKI_VERSION=${LOKI_VERSION:-"6.0.0"}
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/deployment.yaml

              - name: ISTIO_META_WORKLOAD_NAME
                value: {{ $gateway.name }}
              - name: ISTIO_META_OWNER
                value: kubernetes://apis/apps/v1/namespaces/{{ .Release.Namespace }}/deployments/{{ $gateway.name }}
              {{- if $.Values.global.meshID }}
              - name: ISTIO_META_MESH_ID
                value: "{{ $.Values.global.meshID }}"
              {{- else if .Values.meshConfig.trustDomain }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Protocol.kt

      /**
       * The IETF's binary-framed protocol that includes header compression, multiplexing multiple
       * requests on the same socket, and server-push. HTTP/1.1 semantics are layered on HTTP/2.
       *
       * HTTP/2 requires deployments of HTTP/2 that use TLS 1.2 support
       * [CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256], present in Java 8+ and Android 5+.
       * Servers that enforce this may send an exception message including the string
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:17:33 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  8. 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()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/README.md

    Prometheus sets the `Host` header to `domain:port` as part of HTTP operations against the MinIO metrics endpoint. For MinIO deployments behind a load balancer, reverse proxy, or other control plane (HAProxy, nginx, pfsense, opnsense, etc.), ensure the network service supports routing these requests to the deployment.
    
    ### 6. Configure Grafana
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 12 15:49:30 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    			pools:  []poolDisksLayout{{layout: setArgs, cmdline: strings.Join(args, " ")}},
    		}
    		return
    	}
    
    	for _, arg := range args {
    		if !ellipses.HasEllipses(arg) && len(args) > 1 {
    			// TODO: support SNSD deployments to be decommissioned in future
    			return fmt.Errorf("all args must have ellipses for pool expansion (%w) args: %s", errInvalidArgument, args)
    		}
    		setArgs, err = GetAllSets(arg)
    		if err != nil {
    			return err
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 21:22:47 GMT 2024
    - 14.8K bytes
    - Viewed (0)
Back to top