Heat: Correct ingress manifest conditionals

This PS corrects the ingress manifest conditionals to use the right
key for enable/disable control.

Change-Id: I2d4766aaeb01375eab5cd44af4bfbb89754f8bf3
This commit is contained in:
Pete Birley 2018-05-12 17:34:28 -05:00
parent 00def94bad
commit 99b47be838
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if and .Values.manifests.ingress_api .Values.network.cfn.ingress.public }}
{{- if and .Values.manifests.ingress_cfn .Values.network.cfn.ingress.public }}
{{- $ingressOpts := dict "envAll" . "backendService" "cfn" "backendServiceType" "cloudformation" "backendPort" "h-cfn" -}}
{{ $ingressOpts | include "helm-toolkit.manifests.ingress" }}
{{- end }}

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{- if and .Values.manifests.ingress_api .Values.network.cloudwatch.ingress.public }}
{{- if and .Values.manifests.ingress_cloudwatch .Values.network.cloudwatch.ingress.public }}
{{- $ingressOpts := dict "envAll" . "backendService" "cloudwatch" "backendServiceType" "cloudwatch" "backendPort" "h-cwh" -}}
{{ $ingressOpts | include "helm-toolkit.manifests.ingress" }}
{{- end }}