Browse Source

Added NCP docker image parameter

master
Fábio Kaiser Rauber 4 years ago
parent
commit
d7871e0920
  1. 7
      charts/nsx-ncp-operator/v0.1.0/questions.yaml
  2. 2
      charts/nsx-ncp-operator/v0.1.0/templates/operator.yaml
  3. 2
      charts/nsx-ncp-operator/v0.1.0/values.yaml

7
charts/nsx-ncp-operator/v0.1.0/questions.yaml

@ -82,6 +82,13 @@ questions:
required: true
# NSX
- variable: ncp.image
default: "nsx-ncp-ubuntu:latest"
description: "Docker image for NSX NCP Container plugin. Must be downloaded from VMware Downloads page."
label: "NSX NCP Docker image"
type: string
group: NSX
required: true
- variable: ncp.nsx.nsx_api_managers
default: "https://nsx.domain.net"
description: "Address of one or more NSX managers separated by commas, in the form [<scheme>://]<ip_adress>[:<port>]"

2
charts/nsx-ncp-operator/v0.1.0/templates/operator.yaml

@ -44,7 +44,7 @@ spec:
- name: OPERATOR_NAME
value: "nsx-ncp-operator"
- name: NCP_IMAGE
value: "nsx-ncp:latest"
value: "{{ .Values.ncp.image }}"
- name: WATCH_NAMESPACE
value: "{{ .Release.Namespace }}"
resources:

2
charts/nsx-ncp-operator/v0.1.0/values.yaml

@ -13,6 +13,8 @@ nameOverride: ""
fullnameOverride: ""
ncp:
# Docker image for NSX NCP Container Plugin
image: "nsx-ncp-ubuntu:latest"
vc:
# IpAddress or Hostname of VC
vc_endpoint: ""

Loading…
Cancel
Save