Add one-click deployment scripts and override file examples.
[it/dep.git] / ric-xapps / 90-xApps / helm / xapp-admin / values.yaml
diff --git a/ric-xapps/90-xApps/helm/xapp-admin/values.yaml b/ric-xapps/90-xApps/helm/xapp-admin/values.yaml
new file mode 100644 (file)
index 0000000..f63a7a7
--- /dev/null
@@ -0,0 +1,89 @@
+################################################################################
+#   Copyright (c) 2019 AT&T Intellectual Property.                             #
+#   Copyright (c) 2019 Nokia.                                                  #
+#                                                                              #
+#   Licensed under the Apache License, Version 2.0 (the "License");            #
+#   you may not use this file except in compliance with the License.           #
+#   You may obtain a copy of the License at                                    #
+#                                                                              #
+#       http://www.apache.org/licenses/LICENSE-2.0                             #
+#                                                                              #
+#   Unless required by applicable law or agreed to in writing, software        #
+#   distributed under the License is distributed on an "AS IS" BASIS,          #
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
+#   See the License for the specific language governing permissions and        #
+#   limitations under the License.                                             #
+################################################################################
+
+# This is a YAML-formatted file.
+# Declare variables to be passed into your templates.
+
+global:
+  # modify this section to point to your local testing settings
+  repository: "${__RUNRICENV_DOCKER_HOST__}:${__RUNRICENV_DOCKER_PORT__}"
+  repositoryCred:
+    user: "${__RUNRICENV_DOCKER_USER__}"
+    password: "${__RUNRICENV_DOCKER_PASS__}"
+  image:
+    pullPolicy: IfNotPresent
+
+ricplt:
+  # This section is reserved for values imported from RIC Platform charts
+  
+
+ricapp:
+  # This section is for xapp.  Templates to be resolved from xApp descriptor
+  replicaCount: 1
+  xappname: &anchor-xappname xapp-admin
+
+  # # the name of the process that indicates the liveness of the component
+  livenessprocessname: adm-ctrl-xapp
+
+  image:
+    name: test/xapp-admin
+    tag: latest
+
+  nameOverride: ""
+  fullnameOverride: ""
+
+  service:
+    enabled: false
+
+  # to be provided as property file
+  appconfigpath: /opt/etc/xapp
+  appconfig:
+    # to be present as appconfigpath/propfile1
+    propfile1: |
+      prop1.v1="propvalue1.1"
+      prop1.v2="propvalue1.2"
+    propfile2: "propvalue2"
+
+  # to be provided as env variables
+  appenv:
+    NAME: *anchor-xappname
+    RMR_RTG_SVC: "127.0.0.2"
+    NAME: "ADM_CTRL_XAPP2"
+    THREADS: "2"
+    VERBOSE: "1"
+    PORT: "tcp:4561"
+
+  # secret
+  appsecretpath: /opt/etc/kube
+  appsecret:
+    username: myusername
+    password: mypassword
+
+  resources:
+    limits:
+      cpu: 100m
+      memory: 128Mi
+    requests:
+      cpu: 100m
+      memory: 128Mi
+
+  nodeSelector: {}
+
+  tolerations: []
+
+  affinity: {}
+