Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ContainerPort (0.24 sec)

  1. samples/addons/loki.yaml

                - -target=all
              ports:
                - name: http-metrics
                  containerPort: 3100
                  protocol: TCP
                - name: grpc
                  containerPort: 9095
                  protocol: TCP
                - name: http-memberlist
                  containerPort: 7946
                  protocol: TCP
              securityContext:
                allowPrivilegeEscalation: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/deployment.yaml

                value: "{{.}}"
              {{- end }}
              {{- range $key, $val := .Values.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              ports:
              - containerPort: 15090
                protocol: TCP
                name: http-envoy-prom
              resources:
                {{- toYaml .Values.resources | nindent 12 }}
              {{- with .Values.volumeMounts }}
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. samples/addons/kiali.yaml

              runAsNonRoot: true
              capabilities:
                drop:
                - ALL
            ports:
            - name: api-port
              containerPort: 20001
            - name: http-metrics
              containerPort: 9090
            readinessProbe:
              httpGet:
                path: /kiali/healthz
                port: api-port
                scheme: HTTP
              initialDelaySeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/templates/daemonset.yaml

            image: "{{ .Values.image }}"
    {{- else }}
            image: "{{ .Values.hub }}/{{ .Values.image | default "ztunnel" }}:{{ .Values.tag }}{{with (.Values.variant )}}-{{.}}{{end}}"
    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
            resources:
    {{- if .Values.resources }}
    {{ toYaml .Values.resources | trim | indent 10 }}
    {{- end }}
    {{- with .Values.imagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    					Namespace: "ns",
    					Labels: map[string]string{
    						"app": "foo",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{Ports: []v1.ContainerPort{
    						{
    							Name:          "81-target",
    							ContainerPort: 9090,
    							Protocol:      v1.ProtocolTCP,
    						},
    					}}},
    				},
    				Status: v1.PodStatus{
    					Phase:      v1.PodRunning,
    					Conditions: podReady,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. samples/addons/prometheus.yaml

                - --web.console.libraries=/etc/prometheus/console_libraries
                - --web.console.templates=/etc/prometheus/consoles
                - --web.enable-lifecycle
              ports:
                - containerPort: 9090
              readinessProbe:
                httpGet:
                  path: /-/ready
                  port: 9090
                  scheme: HTTP
                initialDelaySeconds: 0
                periodSeconds: 5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    	pods := []*v1.Pod{
    		{ObjectMeta: metav1.ObjectMeta{Name: "pod1", UID: "1234"}, Spec: v1.PodSpec{Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}},
    		{ObjectMeta: metav1.ObjectMeta{Name: "pod2", UID: "4567"}, Spec: v1.PodSpec{Containers: []v1.Container{{Ports: []v1.ContainerPort{{HostPort: 80}}}}}},
    	}
    	podToTest := pods[1]
    	// Run once to populate the status map.
    	kl.HandlePodAdditions(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    }
    
    // PortMapping contains information about the port mapping.
    type PortMapping struct {
    	// Protocol of the port mapping.
    	Protocol v1.Protocol
    	// The port number within the container.
    	ContainerPort int
    	// The port number on the host.
    	HostPort int
    	// The host IP.
    	HostIP string
    }
    
    // DeviceInfo contains information about the device.
    type DeviceInfo struct {
    	// Path on host for mapping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. samples/addons/grafana.yaml

                  subPath: "dashboardproviders.yaml"
              ports:
                - name: grafana
                  containerPort: 3000
                  protocol: TCP
                - name: gossip-tcp
                  containerPort: 9094
                  protocol: TCP
                - name: gossip-udp
                  containerPort: 9094
                  protocol: UDP
              env:
                - name: POD_IP
                  valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      INSECURE_PORT_MAPPING=""
      if [[ "${ENABLE_APISERVER_INSECURE_PORT:-false}" == "true" ]]; then
        # INSECURE_PORT_MAPPING is used by sed
        # shellcheck disable=SC2089
        INSECURE_PORT_MAPPING='{ "name": "local", "containerPort": 8080, "hostPort": 8080},'
      fi
      # shellcheck disable=SC2090
      export INSECURE_PORT_MAPPING
    }
    
    # A helper function that bind mounts kubelet dirs for running mount in a chroot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top