Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 554 for pivots (0.46 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. pilot/docker/Dockerfile.pilot

    FROM ${BASE_DISTRIBUTION:-debug}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-discovery /usr/local/bin/pilot-discovery
    
    # Copy templates for bootstrap generation.
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    COPY gcp_envoy_bootstrap.json /var/lib/istio/envoy/gcp_envoy_bootstrap_tmpl.json
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K 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. releasenotes/notes/pilot-status-too-many-logs.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 42612
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 18:43:17 UTC 2023
    - 222 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. 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)
  7. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    issue:
      - 36916
    
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Improved** Pilot will now load its DNS serving certificate from well known locations:
      ```
      /var/run/secrets/istiod/tls/tls.crt
      /var/run/secrets/istiod/tls/tls.key
      /var/run/secrets/istiod/ca/root-cert.pem
      ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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