Fixed pinned branch references. (#5190)

This commit is contained in:
Martin Taillefer 2019-10-18 10:10:55 -07:00 committed by Istio Automation
parent 70189427c0
commit 55fba592f8
5 changed files with 7 additions and 8 deletions

View File

@ -62,7 +62,7 @@ by the proxy into individual bundles of data that can be routed to different ada
Creating instances generally requires using [attribute expressions](/docs/reference/config/policy-and-telemetry/expression-language/). The point of these expressions is to use any attribute or literal value in order to produce a result that can be assigned to an instances field.
Every instance field has a type, as defined in the template, every attribute has a
[type](https://github.com/istio/api/blob/master/policy/v1beta1/value_type.proto), and every attribute expression has a type.
[type](https://github.com/istio/api/blob/{{< source_branch_name >}}/policy/v1beta1/value_type.proto), and every attribute expression has a type.
You can only assign type-compatible expressions to any given instance fields. For example, you cant assign an integer expression
to a string field. This kind of strong typing is designed to minimize the risk of creating bogus configurations.

View File

@ -42,11 +42,11 @@ please follow the procedure and check whether you will be affected.
1. Check when the root certificate expires:
Download this [script](https://raw.githubusercontent.com/istio/tools/master/bin/root-transition.sh)
Download this [script](https://raw.githubusercontent.com/istio/tools/{{< source_branch_name >}}/bin/root-transition.sh)
on a machine that has `kubectl` access to the cluster.
{{< text bash>}}
$ wget https://raw.githubusercontent.com/istio/tools/master/bin/root-transition.sh
$ wget https://raw.githubusercontent.com/istio/tools/{{< source_branch_name >}}/bin/root-transition.sh
$ chmod +x root-transition.sh
$ ./root-transition.sh check
...

View File

@ -11,7 +11,7 @@ This page describes how to use the Mixer configuration expression language (CEXL
## Background
Mixer configuration uses an expression language (CEXL) to specify match expressions and [mapping expressions](/docs/reference/config/policy-and-telemetry/mixer-overview/#attribute-expressions). CEXL expressions map a set of typed [attributes](/docs/reference/config/policy-and-telemetry/mixer-overview/#attributes) and constants to a typed
[value](https://github.com/istio/api/blob/master/policy/v1beta1/value_type.proto).
[value](https://github.com/istio/api/blob/{{< source_branch_name >}}/policy/v1beta1/value_type.proto).
## Syntax

View File

@ -25,7 +25,7 @@ Kubernetes RBAC permissions.
The Istio CNI plugin performs the Istio mesh pod traffic redirection in the Kubernetes pod lifecycle's network
setup phase, thereby removing the [`NET_ADMIN` capability requirement](/docs/setup/additional-setup/requirements/)
for users deploying pods into the Istio mesh. The [Istio CNI plugin](https://github.com/istio/cni)
for users deploying pods into the Istio mesh. The Istio CNI plugin
replaces the functionality provided by the `istio-init` container.
## Prerequisites

View File

@ -75,8 +75,7 @@ $ istioctl experimental profile list
## Customize Istio settings using the `IstioControlPlane` API
You can change a feature or component setting by using the [`IstioControlPlane` API](/docs/reference/config/istio.operator.v1alpha12.pb/)
([proto](https://github.com/istio/operator/blob/release-1.3/pkg/apis/istio/v1alpha2/istiocontrolplane_types.proto)).
You can change a feature or component setting by using the [`IstioControlPlane` API](/docs/reference/config/istio.operator.v1alpha12.pb/).
### Identify the feature or component
@ -315,5 +314,5 @@ $ istioctl experimental manifest generate <your original installation options> |
## Additional documentation
The Istio Operator CLI is experimental. See the upstream repository [README](https://github.com/istio/operator/blob/master/README.md)
The Istio Operator CLI is experimental. See the upstream repository [README](https://github.com/istio/operator/blob/{{< source_branch_name >}}/README.md)
for additional documentation and examples.