Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 674 for pivots (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

                pivots.push(i);
              }
            }
          } catch (error) {}
        }
        if (pivots.length == 0) {
          pivots.push(0);
        }
        return pivots;
      }
    
      // render re-generates the stack display.
      function render() {
        pivots = urlPivots();
    
        // Get places where pivots occur.
        let places = [];
        for (let pivot of pivots) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. pilot/pkg/features/pilot.go

    		"PILOT_REMOTE_CLUSTER_TIMEOUT",
    		30*time.Second,
    		"After this timeout expires, pilot can become ready without syncing data from clusters added via remote-secrets. "+
    			"Setting the timeout to 0 disables this behavior.",
    	).Get()
    
    	DisableMxALPN = env.Register("PILOT_DISABLE_MX_ALPN", false,
    		"If true, pilot will not put istio-peer-exchange ALPN into TLS handshake configuration.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot.libsonnet

    local queries = (import './queries.libsonnet').queries({
      container: 'discovery',
      pod: 'istiod-.*',
      component: 'pilot',
      app: 'istiod',
    });
    
    dashboard.new('Istio Control Plane Dashboard')
    + g.dashboard.withPanels(
      grid.makeGrid([
        row.new('Deployed Versions')
        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
        ]),
      ], panelHeight=5)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum(istio_build{component=\"pilot\"}) by (tag)",
                   "legendFormat": "Version ({{tag}})"
                }
             ],
             "title": "Pilot Versions",
             "type": "timeseries"
          },
          {
             "collapsed": false,
             "gridPos": {
                "h": 1,
                "w": 24,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. releasenotes/notes/move-istio_cni-to-pilot-values.yaml

    area: installation
    issue:
    - 49290
    releaseNotes:
    - |
      **Improved** helm value field names to configure whether an existing CNI install
       will be used. Instead of values.istio_cni the enablement fields will be in
       values.pilot.cni as istiod is the affected component.
       That is clearer than having values.cni for install config and values.istio_cni
       for enablement in istiod. The old values.istio_cni fields will still be supported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 510 bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    Anton Patsev <******@****.***> 1707328404 +0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/vm_test.go

    				retry.UntilSuccessOrFail(t, func() error {
    					if len(getWorkloadEntriesOrFail(t, autoVM)) > 0 {
    						return errors.New("expected 0 WorkloadEntries")
    					}
    					return nil
    				}, retry.Timeout(2*features.WorkloadEntryCleanupGracePeriod+(2*time.Second)))
    			})
    		})
    }
    
    func disconnectProxy(t framework.TestContext, pilot string, instance echo.Instance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-discovery/app/cmd.go

    	serverArgs     *bootstrap.PilotArgs
    	loggingOptions = log.DefaultOptions()
    )
    
    // NewRootCommand returns the root cobra command of pilot-discovery.
    func NewRootCommand() *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:          "pilot-discovery",
    		Short:        "Istio Pilot.",
    		Long:         "Istio Pilot provides mesh-wide traffic management, security and policy capabilities in the Istio Service Mesh.",
    		SilenceUsage: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pilot/test/xds/fake.go

    	"istio.io/istio/pilot/pkg/autoregistration"
    	"istio.io/istio/pilot/pkg/bootstrap"
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    	ingress "istio.io/istio/pilot/pkg/config/kube/ingress"
    	"istio.io/istio/pilot/pkg/config/memory"
    	kubesecrets "istio.io/istio/pilot/pkg/credentials/kube"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/options/options.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package options
    
    import (
    	"path/filepath"
    	"time"
    
    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/wasm"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top