Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 128 for bookinfo (0.17 sec)

  1. istioctl/pkg/internaldebug/internal-debug.go

    			case strings.Contains(eString, "querystring parameter 'resource' is required"):
    				return nil, fmt.Errorf("querystring parameter 'resource' is required, e.g. [%s]",
    					"config_distribution?resource=VirtualService/default/bookinfo")
    			}
    		}
    	}
    	return nil, nil
    }
    
    func DebugCommand(ctx cli.Context) *cobra.Command {
    	var opts clioptions.ControlPlaneOptions
    	var centralOpts clioptions.CentralControlPlaneOptions
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/kubeinject.go

      kubectl -n istio-system get cm istio-sidecar-injector -o jsonpath="{.data.values}" > /tmp/values.json
    
      # Use kube-inject based on captured configuration
      istioctl kube-inject -f samples/bookinfo/platform/kube/bookinfo.yaml \
        --injectConfigFile /tmp/inj-template.tmpl \
        --meshConfigFile /tmp/mesh.yaml \
        --valuesFile /tmp/values.json
    `,
    		RunE: func(c *cobra.Command, _ []string) (err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. pkg/config/security/security.go

    	attrDestName         = "destination.name"       // short service name, e.g. "productpage".
    	attrDestNamespace    = "destination.namespace"  // e.g. "default".
    	attrDestUser         = "destination.user"       // service account, e.g. "bookinfo-productpage".
    	attrConnSNI          = "connection.sni"         // server name indication, e.g. "www.example.com".
    	attrExperimental     = "experimental.envoy.filters."
    )
    
    var (
    	MatchOneTemplate = "{*}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/dsl.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <book id="dsl">
        <bookinfo>
            <title>Gradle Build Language Reference</title>
            <titleabbrev>Gradle DSL</titleabbrev>
        </bookinfo>
    
        <section>
            <title>Introduction</title>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  5. istioctl/pkg/validate/validate_test.go

      spec:
        replicas: 1
        template:
          metadata:
            labels:
              app: details
              version: v1
          spec:
            containers:
            - name: details
              image: istio/examples-bookinfo-details-v1:1.10.1
              imagePullPolicy: IfNotPresent
              ports:
              - containerPort: 9080
    kind: List
    metadata:
      resourceVersion: ""
      selfLink: ""`
    	invalidSvcList = `
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_simulation_test.go

    		},
    		simulationTest{
    			name: "simple http and virtual service",
    			config: createGateway("gateway", "", httpServer) + `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bookinfo
    spec:
      hosts:
      - "*"
      gateways:
      - gateway
      http:
      - match:
        - uri:
            exact: /productpage
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute.go

    		}
    
    		// FIXME: This will ignore virtual services with hostnames that do not match any service in the registry
    		// per api spec, these hostnames + routes should appear in the virtual hosts (think bookinfo.com and
    		// productpage.ns1.svc.cluster.local). See the TODO in BuildSidecarOutboundVirtualHosts for the right solution
    		if useSniffing {
    			virtualHosts = getVirtualHostsForSniffedServicePort(virtualHosts, routeName)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    			_ = resolveGatewayName(tt.gateway, config.Meta{Namespace: tt.namespace})
    		}
    	}
    }
    
    func TestSelectVirtualService(t *testing.T) {
    	services := []*Service{
    		buildHTTPService("bookinfo.com", visibility.Public, wildcardIP, "default", 9999, 70),
    		buildHTTPService("private.com", visibility.Private, wildcardIP, "default", 9999, 80),
    		buildHTTPService("test.com", visibility.Public, "8.8.8.8", "not-default", 8080),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockInfo.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal.filelock;
    
    public class LockInfo {
        public int port = -1;
        public long lockId;
        public String pid = "unknown";
        public String operation = "unknown";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 813 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/filelock/LockInfoAccess.java

        public void writeLockInfo(RandomAccessFile lockFileAccess, LockInfo lockInfo) throws IOException {
            lockFileAccess.seek(infoRegionPos);
    
            DataOutputStream outstr = new DataOutputStream(new BufferedOutputStream(new RandomAccessFileOutputStream(lockFileAccess)));
            outstr.writeByte(lockInfoSerializer.getVersion());
            lockInfoSerializer.write(outstr, lockInfo);
            outstr.flush();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top