Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 450 for pivots (0.2 sec)

  1. pkg/scheduler/internal/cache/snapshot.go

    	s.havePodsWithRequiredAntiAffinityNodeInfoList = havePodsWithRequiredAntiAffinityNodeInfoList
    	s.usedPVCSet = createUsedPVCSet(pods)
    
    	return s
    }
    
    // createNodeInfoMap obtains a list of pods and pivots that list into a map
    // where the keys are node names and the values are the aggregated information
    // for that node.
    func createNodeInfoMap(pods []*v1.Pod, nodes []*v1.Node) map[string]*framework.NodeInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/pilot-autoscale.yaml

    John Howard <******@****.***> 1703148133 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 08:42:13 UTC 2023
    - 428 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/log/slog/example_custom_levels_test.go

    	logger.Log(ctx, LevelEmergency, "missing pilots")
    	logger.Error("failed to start engines", "err", "missing fuel")
    	logger.Warn("falling back to default value")
    	logger.Log(ctx, LevelNotice, "all systems are running")
    	logger.Info("initiating launch")
    	logger.Debug("starting background job")
    	logger.Log(ctx, LevelTrace, "button clicked")
    
    	// Output:
    	// sev=EMERGENCY msg="missing pilots"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- end }}
          containers:
            - name: discovery
    {{- if contains "/" .Values.pilot.image }}
              image: "{{ .Values.pilot.image }}"
    {{- else }}
              image: "{{ .Values.pilot.hub | default .Values.global.hub }}/{{ .Values.pilot.image | default "pilot" }}:{{ .Values.pilot.tag | default .Values.global.tag }}{{with (.Values.pilot.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

      {{- if .Values.pilot.memory.targetAverageUtilization }}
      - type: Resource
        resource:
          name: memory
          target:
            type: Utilization
            averageUtilization: {{ .Values.pilot.memory.targetAverageUtilization }}
      {{- end }}
      {{- if .Values.pilot.autoscaleBehavior }}
      behavior: {{ toYaml .Values.pilot.autoscaleBehavior | nindent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top