Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Peer authentication beta API, aka mTLS beta (#1241) #1273

Merged
merged 1 commit into from
Feb 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Peer authentication beta API, aka mTLS beta (#1241)
* Peer authentication beta API, aka mTLS beta

* Add missing gen file

* Update CRD cue and re-gen"

* Add port level mtls

* Udate proto.lock after rebase

* Remove port level settings for now. We might add it later

* Re-gen

* Apply comment suggestions

* Add port level mTLS settings

* Add example for inherit parent settings

* Rename invalid to unset

* Rename invalid to unset

* Address comments

* Address comments
  • Loading branch information
diemtvu committed Feb 6, 2020
commit 47ea475b2e8cbe5f3d199bef8ea554d39fbecf57
76 changes: 76 additions & 0 deletions kubernetes/customresourcedefinitions.gen.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions proto.lock
Original file line number Diff line number Diff line change
Expand Up @@ -45852,6 +45852,86 @@
]
}
},
{
"protopath": "security:/:v1beta1:/:peer_authentication.proto",
"def": {
"enums": [
{
"name": "MutualTLS.Mode",
"enum_fields": [
{
"name": "UNSET"
},
{
"name": "DISABLE",
"integer": 1
},
{
"name": "PERMISSIVE",
"integer": 2
},
{
"name": "STRICT",
"integer": 3
}
]
}
],
"messages": [
{
"name": "PeerAuthentication",
"fields": [
{
"id": 1,
"name": "selector",
"type": "istio.type.v1beta1.WorkloadSelector"
},
{
"id": 2,
"name": "mtls",
"type": "MutualTLS"
}
],
"maps": [
{
"key_type": "uint32",
"field": {
"id": 3,
"name": "port_level_mtls",
"type": "MutualTLS"
}
}
],
"messages": [
{
"name": "MutualTLS",
"fields": [
{
"id": 1,
"name": "mode",
"type": "Mode"
}
]
}
]
}
],
"imports": [
{
"path": "type/v1beta1/selector.proto"
}
],
"package": {
"name": "istio.security.v1beta1"
},
"options": [
{
"name": "go_package",
"value": "istio.io/api/security/v1beta1"
}
]
}
},
{
"protopath": "security:/:v1beta1:/:request_authentication.proto",
"def": {
Expand Down
210 changes: 210 additions & 0 deletions python/istio_api/security/v1beta1/peer_authentication_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading