Skip to content

Commit 1d394b2

Browse files
author
pmerrison
committed
Merging tetrate-workflow with tetrate-release-1.10
1 parent 521736d commit 1d394b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2862
-243
lines changed

.github/workflows/e2e_tests.yml

Lines changed: 324 additions & 50 deletions
Large diffs are not rendered by default.

.github/workflows/make_release.yml

Lines changed: 275 additions & 35 deletions
Large diffs are not rendered by default.

.github/workflows/tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
required: true
99

1010
jobs:
11-
build_tools_docker_arm64:
11+
build_tools_docker:
1212
name: build tools docker
1313
runs-on: ["self-hosted", "arm64"]
1414
env:

tetrateci/1.12/test/skip.d/eks-arm64

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# e2e tests to skip (until a long-term fix is found)
2+
#
3+
# Each line has format:
4+
#
5+
# ```text
6+
# <pkg>=<test1> <test2> <test3> ...
7+
# ```
8+
#
9+
# where
10+
# 1. <pkg> - is a name of a package with Istio e2e tests, e.g.
11+
# `istio.io/istio/tests/integration/pilot`
12+
# 2. <testN> - is a regexp that matches unit tests to skip, e.g.
13+
# 'TestA', 'TestA|TestB|TestC', 'TestA/case-b', etc.
14+
# Each `<testN>` value will be translated into the
15+
# `--istio.test.skip` option of the Istio Test Framework.
16+
#
17+
# A special case,
18+
#
19+
# ```text
20+
# <pkg>=*
21+
# ```
22+
#
23+
# indicates that tests for the package `<pkg>` should not be run at all.
24+
25+
istio.io/istio/tests/integration/helm/upgrade=*
26+
27+
istio.io/istio/tests/integration/pilot=*
28+
istio.io/istio/tests/integration/pilot/endpointslice=*
29+
istio.io/istio/tests/integration/pilot/revisions=TestMultiRevision
30+
31+
istio.io/istio/tests/integration/security=*
32+
istio.io/istio/tests/integration/security/sds_ingress=*
33+
istio.io/istio/tests/integration/security/sds_tls_origination=TestSimpleTlsOrigination TestMutualTlsOrigination
34+
35+
istio.io/istio/tests/integration/telemetry/stats/prometheus/nullvm=TestAccessLogs
36+
istio.io/istio/tests/integration/telemetry/tracing/zipkin/clienttracing=TestClientTracing
37+
istio.io/istio/tests/integration/telemetry/tracing/zipkin/servertracing=TestProxyTracing
38+
39+
istio.io/istio/tests/integration/telemetry/stackdriver=*
40+
istio.io/istio/tests/integration/telemetry/stackdriver/api=*
41+
istio.io/istio/tests/integration/telemetry/stackdriver/vm=*
42+
43+
istio.io/istio/tests/integration/telemetry/tracing/opencensusagent=*
44+
istio.io/istio/tests/integration/telemetry/policy=*

tetrateci/1.13/test/skip.d/eks

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
#
2323
# indicates that tests for the package `<pkg>` should not be run at all.
2424

25-
istio.io/istio/tests/integration/helm/upgrade=*
26-
istio.io/istio/tests/integration/pilot/revisions=*
27-
istio.io/istio/tests/integration/security/sds_ingress/quic=*
25+
istio.io/istio/tests/integration/helm/upgrade=TestRevisionTagsUpgradeFromPrevious
26+
MinorRelease
27+
2828
istio.io/istio/tests/integration/pilot=TestIngress/status
2929

3030
istio.io/istio/tests/integration/telemetry/tracing/zipkin/servertracing=TestProxyTracing

tetrateci/1.13/test/skip.d/eks-arm64

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# e2e tests to skip (until a long-term fix is found)
2+
#
3+
# Each line has format:
4+
#
5+
# ```text
6+
# <pkg>=<test1> <test2> <test3> ...
7+
# ```
8+
#
9+
# where
10+
# 1. <pkg> - is a name of a package with Istio e2e tests, e.g.
11+
# `istio.io/istio/tests/integration/pilot`
12+
# 2. <testN> - is a regexp that matches unit tests to skip, e.g.
13+
# 'TestA', 'TestA|TestB|TestC', 'TestA/case-b', etc.
14+
# Each `<testN>` value will be translated into the
15+
# `--istio.test.skip` option of the Istio Test Framework.
16+
#
17+
# A special case,
18+
#
19+
# ```text
20+
# <pkg>=*
21+
# ```
22+
#
23+
# indicates that tests for the package `<pkg>` should not be run at all.
24+
25+
istio.io/istio/tests/integration/helm/upgrade=*
26+
27+
istio.io/istio/tests/integration/pilot=*
28+
istio.io/istio/tests/integration/pilot/endpointslice=*
29+
istio.io/istio/tests/integration/pilot/revisions=TestMultiRevision
30+
31+
istio.io/istio/tests/integration/security=*
32+
istio.io/istio/tests/integration/security/sds_ingress/quic=*
33+
istio.io/istio/tests/integration/security/https_jwt=*
34+
istio.io/istio/tests/integration/security/sds_ingress=*
35+
istio.io/istio/tests/integration/security/sds_tls_origination=TestSimpleTlsOrigination TestMutualTlsOrigination
36+
37+
istio.io/istio/tests/integration/telemetry/tracing/zipkin/clienttracing=TestClientTracing
38+
istio.io/istio/tests/integration/telemetry/tracing/zipkin/servertracing=TestProxyTracing
39+
istio.io/istio/tests/integration/telemetry/stackdriver=*
40+
istio.io/istio/tests/integration/telemetry/stackdriver/api=*
41+
istio.io/istio/tests/integration/telemetry/stackdriver/vm=*
42+
istio.io/istio/tests/integration/telemetry/tracing/opencensusagent=*
43+
istio.io/istio/tests/integration/telemetry/policy=*

tetrateci/1.13/test/skip.d/gke

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,11 @@
2020
# <pkg>=*
2121
# ```
2222
#
23-
# Indicates that tests for the package `<pkg>` should not be run at all.
23+
# indicates that tests for the package `<pkg>` should not be run at all.
2424

25+
istio.io/istio/tests/integration/helm/upgrade=TestRevisionTagsUpgradeFromPrevious
26+
MinorRelease
2527

26-
istio.io/istio/tests/integration/helm=*
27-
istio.io/istio/tests/integration/helm/upgrade=*
28-
istio.io/istio/tests/integration/security=TestReachability/beta-mtls-off
29-
istio.io/istio/tests/integration/security/sds_ingress/quic=*
30-
istio.io/istio/tests/integration/security/mtls_first_party_jwt=*
31-
istio.io/istio/tests/integration/security/https_jwt=TestJWTHTTPS/jwt-authn/a/to_b/valid-token-forward-remote-jwks
3228
istio.io/istio/tests/integration/pilot=TestGateway TestIngress TestDescribe TestTraffic
29+
3330
istio.io/istio/tests/integration/telemetry/stackdriver=*

tetrateci/1.14/test/skip.d/eks

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# e2e tests to skip (until a long-term fix is found)
2+
#
3+
# Each line has format:
4+
#
5+
# ```text
6+
# <pkg>=<test1> <test2> <test3> ...
7+
# ```
8+
#
9+
# where
10+
# 1. <pkg> - is a name of a package with Istio e2e tests, e.g.
11+
# `istio.io/istio/tests/integration/pilot`
12+
# 2. <testN> - is a regexp that matches unit tests to skip, e.g.
13+
# 'TestA', 'TestA|TestB|TestC', 'TestA/case-b', etc.
14+
# Each `<testN>` value will be translated into the
15+
# `--istio.test.skip` option of the Istio Test Framework.
16+
#
17+
# A special case,
18+
#
19+
# ```text
20+
# <pkg>=*
21+
# ```
22+
#
23+
# indicates that tests for the package `<pkg>` should not be run at all.
24+
25+
istio.io/istio/tests/integration/helm/upgrade=TestRevisionTagsUpgradeFromPrevious
26+
MinorRelease
27+
28+
istio.io/istio/tests/integration/pilot=TestIngress/status
29+
30+
istio.io/istio/tests/integration/telemetry/tracing/zipkin/servertracing=TestProxyTracing
31+
32+
istio.io/istio/tests/integration/telemetry/stackdriver=*
33+
istio.io/istio/tests/integration/telemetry/stackdriver/vm=*

tetrateci/1.14/test/skip.d/eks-arm64

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# e2e tests to skip (until a long-term fix is found)
2+
#
3+
# Each line has format:
4+
#
5+
# ```text
6+
# <pkg>=<test1> <test2> <test3> ...
7+
# ```
8+
#
9+
# where
10+
# 1. <pkg> - is a name of a package with Istio e2e tests, e.g.
11+
# `istio.io/istio/tests/integration/pilot`
12+
# 2. <testN> - is a regexp that matches unit tests to skip, e.g.
13+
# 'TestA', 'TestA|TestB|TestC', 'TestA/case-b', etc.
14+
# Each `<testN>` value will be translated into the
15+
# `--istio.test.skip` option of the Istio Test Framework.
16+
#
17+
# A special case,
18+
#
19+
# ```text
20+
# <pkg>=*
21+
# ```
22+
#
23+
# indicates that tests for the package `<pkg>` should not be run at all.
24+
25+
istio.io/istio/tests/integration/pilot=TestGatewayConformance
26+
istio.io/istio/tests/integration/helm/upgrade=*
27+
istio.io/istio/tests/integration/security/sds_ingress/quic=*

tetrateci/1.14/test/skip.d/gke

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# e2e tests to skip (until a long-term fix is found)
2+
#
3+
# Each line has format:
4+
#
5+
# ```text
6+
# <pkg>=<test1> <test2> <test3> ...
7+
# ```
8+
#
9+
# where
10+
# 1. <pkg> - is a name of a package with Istio e2e tests, e.g.
11+
# `istio.io/istio/tests/integration/pilot`
12+
# 2. <testN> - is a regexp that matches unit tests to skip, e.g.
13+
# 'TestA', 'TestA|TestB|TestC', 'TestA/case-b', etc.
14+
# Each `<testN>` value will be translated into the
15+
# `--istio.test.skip` option of the Istio Test Framework.
16+
#
17+
# A special case,
18+
#
19+
# ```text
20+
# <pkg>=*
21+
# ```
22+
#
23+
# indicates that tests for the package `<pkg>` should not be run at all.
24+
25+
istio.io/istio/tests/integration/helm/upgrade=TestRevisionTagsUpgradeFromPrevious
26+
MinorRelease
27+
28+
istio.io/istio/tests/integration/pilot=TestGateway TestIngress TestDescribe TestTraffic
29+
istio.io/istio/tests/integration/helm=*
30+
istio.io/istio/tests/integration/helm/upgrade=*
31+
istio.io/istio/tests/integration/security=TestReachability/beta-mtls-off
32+
istio.io/istio/tests/integration/security/sds_ingress/quic=*
33+
istio.io/istio/tests/integration/security/mtls_first_party_jwt=*
34+
istio.io/istio/tests/integration/security/https_jwt=TestJWTHTTPS/jwt-authn/a/to_b/valid-token-forward-remote-jwks
35+
istio.io/istio/tests/integration/pilot=TestGateway TestIngress TestDescribe TestTraffic
36+
istio.io/istio/tests/integration/telemetry/stackdriver=*
37+
istio.io/istio/tests/integration/telemetry/stackdriver=*

0 commit comments

Comments
 (0)