Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Munk (0.13 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    			gw, err := makeGateway(false)
    			if err != nil {
    				return fmt.Errorf("failed to create gateway: %v", err)
    			}
    			b, err := yaml.Marshal(gw)
    			if err != nil {
    				return err
    			}
    			// strip junk
    			res := strings.ReplaceAll(string(b), `  creationTimestamp: null
    `, "")
    			res = strings.ReplaceAll(res, `status: {}
    `, "")
    			fmt.Fprint(cmd.OutOrStdout(), res)
    			return nil
    		},
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate_test.go

    "metadata": {
    	"name": "istio-system"
    }
    }`
    	invalidUnsupportedKey = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    unexpected_junk:
       still_more_junk:
    spec:
      host: productpage`
    	versionLabelMissingDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:`
    	skippedDeployment = `
    apiVersion: apps/v1
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
Back to top