Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Wain (0.14 sec)

  1. operator/cmd/operator/main.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"os"
    
    	controllruntimelog "sigs.k8s.io/controller-runtime/pkg/log"
    
    	"istio.io/istio/pkg/log"
    )
    
    func main() {
    	log.EnableKlogWithCobra()
    	// adding to remove message about the controller-runtime logs not getting displayed
    Go
    - Registered: 2023-11-22 22:53
    - Last Modified: 2023-11-09 23:13
    - 1K bytes
    - Viewed (0)
  2. cni/README.md

    ## Implementation Details
    
    ### Overview
    
    - [istio-cni Helm chart](../manifests/charts/istio-cni/templates)
        - `install-cni` daemonset - main function is to install and help the node CNI, but it is also a proper server and interacts with K8S, watching Pods for recovery.
        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
    Plain Text
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-07-18 22:37
    - 10.1K bytes
    - Viewed (0)
  3. istioctl/cmd/istioctl/istioctl_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"os"
    	"testing"
    )
    
    func TestIstioctlMain(_ *testing.T) {
    	os.Args = []string{"istioctl", "version", "--remote=false"}
    	main()
    Go
    - Registered: 2023-11-29 22:53
    - Last Modified: 2020-05-29 20:42
    - 738 bytes
    - Viewed (0)
  4. operator/cmd/mesh.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"os"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/cmd/mesh"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/version"
    )
    
    func main() {
    	version.Info.Version = binversion.OperatorVersionString
    	rootCmd := mesh.GetRootCmd(cli.NewCLIContext(nil), os.Args[1:])
    Go
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-08-29 14:15
    - 963 bytes
    - Viewed (0)
  5. operator/pkg/util/common_test.go

    	}{
    		{
    			desc: "empty",
    			in:   "",
    			want: false,
    		},
    		{
    			desc: "no-markers",
    			in:   "foobar",
    			want: false,
    		},
    		{
    			desc: "with-slash",
    			in:   "/home/bobby/go_rocks/main",
    			want: true,
    		},
    		{
    			desc: "with-period",
    			in:   "istio.go",
    			want: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Go
    - Registered: 2023-10-11 22:53
    - Last Modified: 2020-05-29 20:42
    - 2.2K bytes
    - Viewed (0)
  6. common/config/.golangci.yml

        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      unparam:
        # call graph construction algorithm (cha, rta). In general, use cha for libraries,
        # and rta for programs with main packages. Default is cha.
        algo: cha
        # Inspect exported functions, default is false. Set to true if no external program/library imports your code.
    Others
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-10-27 11:21
    - 11.4K bytes
    - Viewed (0)
  7. README.md

    information on the Istio community, including the various documents that govern
    the Istio open source project.
    
    - [istio/istio](README.md). This is the main code repository. It hosts Istio's
    core components, install artifacts, and sample programs. It includes:
    
        - [istioctl](istioctl/). This directory contains code for the
    Plain Text
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-01-13 03:35
    - 6.4K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    			if err != nil {
    				err = fmt.Errorf("%s: %w", cleanErr.Error(), err)
    			} else {
    				err = cleanErr
    			}
    		}
    
    		return
    	},
    }
    
    // GetCommand returns the main cobra.Command object for this application
    func GetCommand() *cobra.Command {
    	return rootCmd
    }
    
    func init() {
    	viper.AutomaticEnv()
    	viper.AllowEmptyEnv(true)
    Go
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-08-02 03:50
    - 11.2K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/logging/testdata/logging.txt

      grpc: warning
      hc: warning
      health_checker: warning
      http: warning
      http2: warning
      hystrix: warning
      init: warning
      io: warning
      jwt: warning
      kafka: warning
      lua: warning
      main: warning
      misc: warning
      mongo: warning
      quic: warning
      pool: warning
      rbac: warning
      redis: warning
      router: warning
      runtime: warning
      stats: warning
      secret: warning
      tap: warning
    Plain Text
    - Registered: 2023-11-29 22:53
    - Last Modified: 2019-10-02 13:47
    - 715 bytes
    - Viewed (0)
  10. cni/pkg/install/cniconfig.go

    		}
    		cniConfigFilepath += "list"
    	}
    
    	installLog.Infof("Created CNI config %s", cniConfigFilepath)
    	return cniConfigFilepath, nil
    }
    
    // If configured as chained CNI plugin, waits indefinitely for a main CNI config file to exist before returning
    // Or until cancelled by parent context
    func getCNIConfigFilepath(ctx context.Context, cfg pluginConfig) (string, error) {
    	filename := cfg.cniConfName
    
    Go
    - Registered: 2023-11-29 22:53
    - Last Modified: 2023-05-17 02:22
    - 10.2K bytes
    - Viewed (0)
Back to top