forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Default exports, and config root namespace (istio#11387)
* default exportTo flags Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * format Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * nit Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * compile fix Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * helm stuff Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * istio-config namespace and default sidecar scope Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * spell fix Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * nits Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * reorder initialization steps Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * test compile fixes Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * helm tweaks Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * missing helm file * allow ~ in sidecar imports Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * bad copy paste Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * test fix Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * undo framework change Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * Revert "bad copy paste" This reverts commit 934b54a. * Revert "missing helm file" This reverts commit 992685d. * Revert "helm tweaks" This reverts commit 5b78b92. * redos Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * lists Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * quotes Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * tests Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com> * undos Signed-off-by: Shriram Rajagopalan <shriramr@vmware.com>
- Loading branch information
Showing
46 changed files
with
2,081 additions
and
1,010 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,20 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: istio-config | ||
--- | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: Sidecar | ||
metadata: | ||
name: default-sidecar-scope | ||
namespace: istio-config | ||
spec: | ||
egress: | ||
# If this config is applied, sidecars will only be able to talk to | ||
# other services in the same namespace, in addition to istio-telemetry | ||
# and istio-policy | ||
- hosts: | ||
- "./*" | ||
- "istio-system/istio-telemetry.istio-system.svc.cluster.local" | ||
- "istio-system/istio-policy.istio-system.svc.cluster.local" | ||
--- |
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
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
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
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
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
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
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
Oops, something went wrong.