소스 검색

Merge pull request #4868 from ewolinetz/metrics_fix_caCert

Fixing route spec caCertificate to be correctly capitalized
Scott Dodson 7 년 전
부모
커밋
0c89e862e8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      roles/openshift_metrics/templates/route.j2

+ 1 - 1
roles/openshift_metrics/templates/route.j2

@@ -17,7 +17,7 @@ spec:
   tls:
     termination: {{ tls.termination }}
 {% if tls.ca_certificate is defined and tls.ca_certificate | length > 0 %}
-    CACertificate: |
+    caCertificate: |
 {{ tls.ca_certificate|indent(6, true) }}
 {% endif %}
 {% if tls.key is defined and tls.key | length > 0 %}