Sha256: dceda8e564aafc648cf967f78d8178c589cd2a66427e45bf9f7cc0a46c7c6c21
Contents?: true
Size: 557 Bytes
Versions: 58
Compression:
Stored size: 557 Bytes
Contents
--- title: ManagedCertificate categories: dsl --- Here's an example of a ManagedCertificate. .kubes/resources/web/managed_certificate.rb ```ruby name "cert1" domains(["cert1.example.com"]) ``` Produces: .kubes/output/web/managed_certificate.yaml ```yaml --- apiVersion: networking.gke.io/v1beta2 kind: ManagedCertificate metadata: name: cert1 spec: domains: - cert1.example.com ``` ## DSL Methods Here's a list of more common methods: Top-level and special fields: * domain * domains {% include dsl/methods.md name="managed_certificate" %}
Version data entries
58 entries across 58 versions & 1 rubygems