Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 253 for proxyconfig (0.33 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/config/validation/agent/validation_test.go

    		PrivateKeyProvider:     nil,
    	}
    
    	modify := func(config *meshconfig.ProxyConfig, fieldSetter func(*meshconfig.ProxyConfig)) *meshconfig.ProxyConfig {
    		clone := proto.Clone(config).(*meshconfig.ProxyConfig)
    		fieldSetter(clone)
    		return clone
    	}
    
    	cases := []struct {
    		name    string
    		in      *meshconfig.ProxyConfig
    		isValid bool
    	}{
    		{
    			name:    "empty proxy config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/app/cmd.go

    			}
    
    			secOpts, err := options.NewSecurityOptions(proxyConfig, proxyArgs.StsPort, proxyArgs.TokenManagerPlugin)
    			if err != nil {
    				return err
    			}
    
    			// If we are using a custom template file (for control plane proxy, for example), configure this.
    			if proxyArgs.TemplateFile != "" && proxyConfig.CustomConfigFile == "" {
    				proxyConfig.ProxyBootstrapTemplatePath = proxyArgs.TemplateFile
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top