-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kuromesi <[email protected]>
- Loading branch information
Showing
7 changed files
with
522 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
...figuration/networking.istio.io/DestinationRule/testdata/traffic_routing_with_a_match.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
trafficRouting: | ||
apiVersion: rollouts.kruise.io/v1alpha1 | ||
kind: TrafficRouting | ||
metadata: | ||
name: tr-demo | ||
spec: | ||
strategy: | ||
matches: | ||
- headers: | ||
- type: Exact | ||
name: version | ||
value: canary | ||
objectRef: | ||
- service: svc-demo | ||
customNetworkRefs: | ||
- apiVersion: networking.istio.io/v1beta1 | ||
kind: DestinationRule | ||
name: ds-demo | ||
original: | ||
apiVersion: networking.istio.io/v1beta1 | ||
kind: DestinationRule | ||
metadata: | ||
name: ds-demo | ||
spec: | ||
host: svc-demo | ||
trafficPolicy: | ||
loadBalancer: | ||
simple: ROUND_ROBIN | ||
subsets: | ||
- labels: | ||
version: base | ||
name: version-base | ||
expected: | ||
- apiVersion: networking.istio.io/v1beta1 | ||
kind: DestinationRule | ||
metadata: | ||
name: ds-demo | ||
spec: | ||
host: svc-demo | ||
trafficPolicy: | ||
loadBalancer: | ||
simple: ROUND_ROBIN | ||
subsets: | ||
- labels: | ||
version: base | ||
name: version-base | ||
- labels: | ||
istio.service.tag: gray | ||
name: canary |
8 changes: 8 additions & 0 deletions
8
lua_configuration/networking.istio.io/DestinationRule/trafficRouting.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
local spec = obj.data.spec | ||
local canary = {} | ||
canary.labels = {} | ||
canary.name = "canary" | ||
local podLabelKey = "istio.service.tag" | ||
canary.labels[podLabelKey] = "gray" | ||
table.insert(spec.subsets, canary) | ||
return obj.data |
122 changes: 122 additions & 0 deletions
122
lua_configuration/networking.istio.io/VirtualService/testdata/rollout_with_three_steps.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
rollout: | ||
apiVersion: rollouts.kruise.io/v1alpha1 | ||
kind: Rollout | ||
metadata: | ||
name: rollouts-demo | ||
annotations: | ||
rollouts.kruise.io/rolling-style: canary | ||
spec: | ||
disabled: false | ||
objectRef: | ||
workloadRef: | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
name: deploy-demo | ||
strategy: | ||
canary: | ||
steps: | ||
- matches: | ||
- headers: | ||
- type: Exact | ||
name: user-agent | ||
value: pc | ||
- type: RegularExpression | ||
name: name | ||
value: ".*demo" | ||
- matches: | ||
- headers: | ||
- type: Exact | ||
name: user-agent | ||
value: pc | ||
- headers: | ||
- type: RegularExpression | ||
name: name | ||
value: ".*demo" | ||
- weight: 50 | ||
trafficRoutings: | ||
- service: svc-demo | ||
customNetworkRefs: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
name: vs-demo | ||
original: | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
expected: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- match: | ||
- headers: | ||
user-agent: | ||
exact: pc | ||
name: | ||
regex: .*demo | ||
route: | ||
- destination: | ||
host: svc-demo-canary | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- match: | ||
- headers: | ||
name: | ||
regex: .*demo | ||
route: | ||
- destination: | ||
host: svc-demo-canary | ||
- match: | ||
- headers: | ||
user-agent: | ||
exact: pc | ||
route: | ||
- destination: | ||
host: svc-demo-canary | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
weight: 50 | ||
- destination: | ||
host: svc-demo-canary | ||
weight: 50 |
61 changes: 61 additions & 0 deletions
61
...nfiguration/networking.istio.io/VirtualService/testdata/traffic_routing_with_a_match.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
trafficRouting: | ||
apiVersion: rollouts.kruise.io/v1alpha1 | ||
kind: TrafficRouting | ||
metadata: | ||
name: tr-demo | ||
spec: | ||
strategy: | ||
matches: | ||
- headers: | ||
- type: Exact | ||
name: user-agent | ||
value: pc | ||
- type: RegularExpression | ||
name: name | ||
value: ".*demo" | ||
objectRef: | ||
- service: svc-demo | ||
customNetworkRefs: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
name: vs-demo | ||
original: | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base | ||
expected: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- match: | ||
- headers: | ||
user-agent: | ||
exact: pc | ||
name: | ||
regex: .*demo | ||
route: | ||
- destination: | ||
host: svc-demo | ||
subset: canary | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base |
68 changes: 68 additions & 0 deletions
68
...nfiguration/networking.istio.io/VirtualService/testdata/traffic_routing_with_matches.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
trafficRouting: | ||
apiVersion: rollouts.kruise.io/v1alpha1 | ||
kind: TrafficRouting | ||
metadata: | ||
name: tr-demo | ||
spec: | ||
strategy: | ||
matches: | ||
- headers: | ||
- type: Exact | ||
name: user-agent | ||
value: pc | ||
- headers: | ||
- type: RegularExpression | ||
name: name | ||
value: ".*demo" | ||
objectRef: | ||
- service: svc-demo | ||
customNetworkRefs: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
name: vs-demo | ||
original: | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base | ||
expected: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- match: | ||
- headers: | ||
name: | ||
regex: .*demo | ||
route: | ||
- destination: | ||
host: svc-demo | ||
subset: canary | ||
- match: | ||
- headers: | ||
user-agent: | ||
exact: pc | ||
route: | ||
- destination: | ||
host: svc-demo | ||
subset: canary | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base |
50 changes: 50 additions & 0 deletions
50
...onfiguration/networking.istio.io/VirtualService/testdata/traffic_routing_with_weight.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
trafficRouting: | ||
apiVersion: rollouts.kruise.io/v1alpha1 | ||
kind: TrafficRouting | ||
metadata: | ||
name: tr-demo | ||
spec: | ||
strategy: | ||
weight: 50 | ||
objectRef: | ||
- service: svc-demo | ||
customNetworkRefs: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
name: vs-demo | ||
original: | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: vs-demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base | ||
expected: | ||
- apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: nginx-vs | ||
namespace: demo | ||
spec: | ||
hosts: | ||
- "*" | ||
gateways: | ||
- nginx-gateway | ||
http: | ||
- route: | ||
- destination: | ||
host: svc-demo | ||
subset: base | ||
weight: 50 | ||
- destination: | ||
host: svc-demo | ||
subset: canary | ||
weight: 50 |
Oops, something went wrong.