Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for rendered (0.18 sec)

  1. architecture/environments/operator.md

    profile defaults and user overlays, all expressed in Helm values.yaml format. This final values.yaml configuration
    is passed to the Helm rendering library and used to render the charts. The rendered manifests are passed to the next
    step.
    1. Overlays in the user CR are applied to the rendered manifests. No values are ever defined in configuration profile
    CRs at this layer, so no merge is performed in this step.
    
    ## CLI
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 13.4K bytes
    - Viewed (0)
  2. manifests/charts/gateway/README.md

    or customize the ports to match the old defaults.
    See the [security advisory](https://istio.io/latest/news/security/istio-security-2021-002/) for more information.
    
    #### Other migrations
    
    If you see errors like `rendered manifests contain a resource that already exists` during installation, you may need to forcibly take ownership.
    
    The script below can handle this for you. Replace `RELEASE` and `NAMESPACE` with the name and namespace of the release:
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 19:38:07 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. manifests/addons/gen.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    set -eux
    
    # This script sets up the plain text rendered deployments for addons
    # See samples/addons/README.md for more information
    
    ADDONS="${WD}/../../samples/addons"
    DASHBOARDS="${WD}/dashboards"
    mkdir -p "${ADDONS}"
    TMP=$(mktemp -d)
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. .gitattributes

    *.gen.json linguist-generated=true
    *_pb2.py linguist-generated=true
    manifests/charts/**/profile*.yaml linguist-generated=true
    go.sum merge=union
    vendor/**  linguist-vendored
    common/**  linguist-vendored
    archive/**  linquist-vendored
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Feb 01 19:15:39 GMT 2024
    - 545 bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate.go

    	Revision string
    	// Components is a list of strings specifying which component's manifests to be generated.
    	Components []string
    	// Filter is the list of components to render
    	Filter []string
    }
    
    var kubeClientFunc func() (kube.CLIClient, error)
    
    func (a *ManifestGenerateArgs) String() string {
    	var b strings.Builder
    	b.WriteString("InFilenames:   " + fmt.Sprint(a.InFilenames) + "\n")
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. operator/README.md

    ```
    
    Use `istioctl` to generate the manifests for the new configuration profile:
    
    ```bash
    istioctl manifest generate -f manifests/profiles/minimal.yaml
    ```
    
    After running the command, the Helm charts are rendered using `manifests/profiles/minimal.yaml`.
    
    ##### --set syntax
    
    The CLI `--set` option can be used to override settings within the profile.
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/listener.go

    func getMatches(f *listener.FilterChainMatch) string {
    	match := f
    	if match == nil {
    		match = &listener.FilterChainMatch{}
    	}
    	// filterChaince also has SuffixLen, SourceType, SourcePrefixRanges which are not rendered.
    
    	descrs := []string{}
    	if len(match.ServerNames) > 0 {
    		descrs = append(descrs, fmt.Sprintf("SNI: %s", strings.Join(match.ServerNames, ",")))
    	}
    	if len(match.TransportProtocol) > 0 {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/generate.go

    }
    
    // generateValidatingWebhook renders a validating webhook configuration from the given tagWebhookConfig.
    func generateValidatingWebhook(config *tagWebhookConfig, opts *GenerateOptions) (string, error) {
    	r := helm.NewHelmRenderer(opts.ManifestsPath, defaultChart, "Pilot", config.IstioNamespace, nil)
    
    	if err := r.Run(); err != nil {
    		return "", fmt.Errorf("failed running Helm renderer: %v", err)
    	}
    
    	values := fmt.Sprintf(`
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  9. istioctl/pkg/multicluster/remote_secret.go

    	if err := baseRenderer.Run(); err != nil {
    		return "", fmt.Errorf("failed running base Helm renderer: %w", err)
    	}
    	if err := discoveryRenderer.Run(); err != nil {
    		return "", fmt.Errorf("failed running base discovery Helm renderer: %w", err)
    	}
    
    	values := fmt.Sprintf(`
    global:
      istioNamespace: %s
    `, opt.Namespace)
    
    	// Render the templates required for the service account and role bindings.
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-mesh-dashboard.json

          },
          "lines": true,
          "linewidth": 1,
          "links": [],
          "nullPointMode": "null",
          "percentage": false,
          "pointradius": 5,
          "points": false,
          "renderer": "flot",
          "seriesOverrides": [],
          "spaceLength": 10,
          "stack": false,
          "steppedLine": false,
          "targets": [
            {
              "datasource": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 02:28:01 GMT 2024
    - 46.4K bytes
    - Viewed (0)
Back to top