Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 278 for proxyconfig (0.31 sec)

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

    		namespace:     make(map[string]*v1beta1.ProxyConfig),
    		workload:      make(map[string]*v1beta1.ProxyConfig),
    	}
    
    	c.ForEach(gvk.ProxyConfig, func(r *resource.Instance) bool {
    		proxyConfig := r.Message.(*v1beta1.ProxyConfig)
    		if r.Metadata.FullName.Namespace.String() == resolver.rootNamespace {
    			resolver.root = proxyConfig
    			return true
    		}
    		if proxyConfig.GetSelector() == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    // 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.
    
    package proxyconfig
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    	"regexp"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    	"github.com/spf13/cobra"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  3. pkg/test/datasets/validation/dataset/networking-v1beta1-ProxyConfig.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: ProxyConfig
    metadata:
      name: valid-example-pc
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 116 bytes
    - Viewed (0)
  4. releasenotes/notes/fix-proxyconfig-endpoints-json.yaml

    Keith Mattix II <******@****.***> 1694141094 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 02:44:54 UTC 2023
    - 205 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-probes-proxyHoldApplication-ProxyConfig.yaml.injected

                  fieldPath: status.hostIP
            - name: ISTIO_CPU_LIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {"holdApplicationUntilProxyStarts":true}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                    {"name":"http","containerPort":80}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.injected

                  fieldPath: status.hostIP
            - name: ISTIO_CPU_LIMIT
              valueFrom:
                resourceFieldRef:
                  divisor: "0"
                  resource: limits.cpu
            - name: PROXY_CONFIG
              value: |
                {"holdApplicationUntilProxyStarts":false}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                    {"name":"http","containerPort":80}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

                  valueFrom:
                    resourceFieldRef:
                      resource: limits.cpu
                - name: PROXY_CONFIG
                  value: |
                         {{ protoToJSON .ProxyConfig }}
                {{- if .ProxyConfig.ProxyMetadata }}
                {{- range $key, $value := .ProxyConfig.ProxyMetadata }}
                - name: {{ $key }}
                  value: "{{ $value }}"
                {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.values.gen.yaml

    Jingming Guo <******@****.***> 1715374912 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/config/config.go

    	}
    	meshConfig, err := getMeshConfig(fileMeshContents, annotations[annotation.ProxyConfig.Name], proxyConfigEnv)
    	if err != nil {
    		return nil, err
    	}
    	proxyConfig := mesh.DefaultProxyConfig()
    	if meshConfig.DefaultConfig != nil {
    		proxyConfig = meshConfig.DefaultConfig
    	}
    
    	// Concurrency wasn't explicitly set
    	if proxyConfig.Concurrency == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top