Class: Google::Cloud::Container::V1beta1::IstioConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::IstioConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
Configuration options for Istio addon.
Defined Under Namespace
Modules: IstioAuthMode
Instance Attribute Summary collapse
-
#auth ⇒ ::Google::Cloud::Container::V1beta1::IstioConfig::IstioAuthMode
The specified Istio auth mode, either none, or mutual TLS.
-
#disabled ⇒ ::Boolean
Whether Istio is enabled for this cluster.
Instance Attribute Details
#auth ⇒ ::Google::Cloud::Container::V1beta1::IstioConfig::IstioAuthMode
Returns The specified Istio auth mode, either none, or mutual TLS.
988 989 990 991 992 993 994 995 996 997 998 999 1000 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 988 class IstioConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Istio auth mode, https://istio.io/docs/concepts/security/mutual-tls.html module IstioAuthMode # auth not enabled AUTH_NONE = 0 # auth mutual TLS enabled AUTH_MUTUAL_TLS = 1 end end |
#disabled ⇒ ::Boolean
Returns Whether Istio is enabled for this cluster.
988 989 990 991 992 993 994 995 996 997 998 999 1000 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 988 class IstioConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Istio auth mode, https://istio.io/docs/concepts/security/mutual-tls.html module IstioAuthMode # auth not enabled AUTH_NONE = 0 # auth mutual TLS enabled AUTH_MUTUAL_TLS = 1 end end |