aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/pomba/charts/pomba-search-data/values.yaml
blob: 7c9612793273c98a7d80e2218407a206b4919bfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Default values for search-data.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
global: # global defaults
  nodePortPrefix: 302
  readinessRepository: oomk8s
  readinessImage: readiness-check:2.0.0


# application image
repository: nexus3.onap.org:10001
image: onap/search-data-service:1.3.1
pullPolicy: Always
restartPolicy: Always

# application configuration
config:
  elasticsearchHttpPort: 9200
  keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10
  keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10


# default number of instances
replicaCount: 1

nodeSelector: {}

affinity: {}

# probe configuration parameters
liveness:
  initialDelaySeconds: 10
  periodSeconds: 10
  # necessary to disable liveness probe when setting breakpoints
  # in debugger so K8s doesn't restart unresponsive container
  enabled: true

readiness:
  initialDelaySeconds: 10
  periodSeconds: 10

service:
  type: ClusterIP
  portName: pomba-search-data
  internalPort: 9509

ingress:
  enabled: false

resources: {}
  # We usually recommend not to specify default resources and to leave this as a conscious
  # choice for the user. This also increases chances charts run on environments with little
  # resources, such as Minikube. If you do want to specify resources, uncomment the following
  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  #
  # Example:
  # Configure resource requests and limits
  # ref: http://kubernetes.io/docs/user-guide/compute-resources/
  # Minimum memory for development is 2 CPU cores and 4GB memory
  # Minimum memory for production is 4 CPU cores and 8GB memory
#resources:
#  limits:
#    cpu: 2
#    memory: 4Gi
#  requests:
#    cpu: 2
#    memory: 4Gi
"nt"></name> <description>CCSDK Controller Design Studio</description> <url>https://wiki.onap.org</url> <organization> <name>ONAP</name> </organization> <modules> <module>ms</module> <module>cds-ui</module> <module>components</module> </modules> <properties> <!--Don't set any language to let sonar enable multi-language support--> <sonar.language/> <!--Provide src/main as source path so both src/main/java and src/main/kotlin are scanned--> <sonar.sources>src/main</sonar.sources> <!--Provide src/test as source path for test so both src/test/java and src/test/kotlin are scanned--> <sonar.tests>src/test</sonar.tests> <!--Only include java and kt files to the scan--> <sonar.inclusions>**/*.java,**/*.kt</sonar.inclusions> <!--Specify path to load jacoco XLM report, as Sonar can't load Kotlin coverage from binary report--> <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> <jacoco.version>0.8.3</jacoco.version> <!-- Properties for POM Format --> <format.skipValidate>false</format.skipValidate> <format.skipExecute>true</format.skipExecute> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> </plugin> <!-- Plugin to Format/Validate POM Files --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tidy-maven-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>format-pom</id> <phase>process-sources</phase> <goals> <goal>pom</goal> </goals> <configuration> <skip>${format.skipExecute}</skip> </configuration> </execution> <execution> <id>validate-pom</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> <configuration> <skip>${format.skipValidate}</skip> </configuration> </execution> </executions> </plugin> <!-- Plugin to Format/Validate Kotlin Files --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <id>validate-kotlin</id> <phase>validate</phase> <configuration> <target name="ktlint"> <java taskname="ktlint" dir="${project.basedir}" fork="true" failonerror="true" classname="com.pinterest.ktlint.Main" classpathref="maven.plugin.classpath"> <arg value="src/**/*.kt"/> </java> </target> <skip>${format.skipValidate}</skip> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <!-- Built-in formatter So that you wouldn't have to fix all style violations by hand.--> <id>format-kotlin</id> <phase>process-sources</phase> <configuration> <target name="ktlint"> <java taskname="ktlint" dir="${project.basedir}" fork="true" failonerror="true" classname="com.pinterest.ktlint.Main" classpathref="maven.plugin.classpath"> <arg value="-F"/> <arg value="src/**/*.kt"/> </java> </target> <skip>${format.skipExecute}</skip> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.pinterest</groupId> <artifactId>ktlint</artifactId> <version>0.35.0</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>blackduck</id> <activation> <property> <name>blackduck-scan</name> </property> </activation> <build> <plugins> <plugin> <groupId>com.blackducksoftware.integration</groupId> <artifactId>hub-maven-plugin</artifactId> <version>1.4.0</version> <inherited>false</inherited> <configuration> <hubProjectName>${project.name}</hubProjectName> <outputDirectory>${project.basedir}</outputDirectory> </configuration> <executions> <execution> <id>create-bdio-file</id> <phase>package</phase> <goals> <goal>createHubOutput</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <!-- Profile to format skip validate or execute --> <profile> <id>format</id> <properties> <format.skipValidate>true</format.skipValidate> <format.skipExecute>false</format.skipExecute> </properties> </profile> <profile> <id>dependency-list</id> <build> <plugins> <plugin> <groupId>com.github.ferstl</groupId> <artifactId>depgraph-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <inherited>false</inherited> <goals> <goal>aggregate</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-artifacts</id> <phase>package</phase> <inherited>false</inherited> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>${dependency-list.file}</file> <type>txt</type> <classifier>dependencies</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>