-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for cross partition networking.
- Loading branch information
Ashwin Venkatesh
committed
Oct 29, 2021
1 parent
c731f03
commit 9e5cee7
Showing
11 changed files
with
621 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...tatic-client-partition/kustomization.yaml → ...t-ns-default-partition/kustomization.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
resources: | ||
- ../../bases/static-client | ||
- ../../../bases/static-client | ||
|
||
patchesStrategicMerge: | ||
- patch.yaml |
10 changes: 10 additions & 0 deletions
10
...nce/tests/fixtures/cases/static-client-partitions/default-ns-default-partition/patch.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,10 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: static-client | ||
spec: | ||
template: | ||
metadata: | ||
annotations: | ||
"consul.hashicorp.com/connect-inject": "true" | ||
"consul.hashicorp.com/connect-service-upstreams": "static-server.default.default:1234" |
5 changes: 5 additions & 0 deletions
5
...nce/tests/fixtures/cases/static-client-partitions/default-ns-partition/kustomization.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,5 @@ | ||
resources: | ||
- ../../../bases/static-client | ||
|
||
patchesStrategicMerge: | ||
- patch.yaml |
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
...nce/tests/fixtures/cases/static-client-partitions/ns-default-partition/kustomization.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,5 @@ | ||
resources: | ||
- ../../../bases/static-client | ||
|
||
patchesStrategicMerge: | ||
- patch.yaml |
10 changes: 10 additions & 0 deletions
10
acceptance/tests/fixtures/cases/static-client-partitions/ns-default-partition/patch.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,10 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: static-client | ||
spec: | ||
template: | ||
metadata: | ||
annotations: | ||
"consul.hashicorp.com/connect-inject": "true" | ||
"consul.hashicorp.com/connect-service-upstreams": "static-server.ns1.default:1234" |
5 changes: 5 additions & 0 deletions
5
acceptance/tests/fixtures/cases/static-client-partitions/ns-partition/kustomization.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,5 @@ | ||
resources: | ||
- ../../../bases/static-client | ||
|
||
patchesStrategicMerge: | ||
- patch.yaml |
10 changes: 10 additions & 0 deletions
10
acceptance/tests/fixtures/cases/static-client-partitions/ns-partition/patch.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,10 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: static-client | ||
spec: | ||
template: | ||
metadata: | ||
annotations: | ||
"consul.hashicorp.com/connect-inject": "true" | ||
"consul.hashicorp.com/connect-service-upstreams": "static-server.ns1.secondary:1234" |
Oops, something went wrong.