Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neon_diana_utils/helm_charts/base/base-neon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: base-neon
description: Library chart for basic Neon Core Services

type: library
version: 0.0.6
version: 0.0.7
appVersion: "1.0.1a37"
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ spec:
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
name: {{ default .Chart.Name .Values.serviceName }}
{{- if .Values.startupProbe }}
startupProbe:
{{- toYaml .Values.startupProbe | nindent 12 -}}
{{- end }}
{{- if .Values.livenessProbe }}
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 -}}
Expand Down
16 changes: 8 additions & 8 deletions neon_diana_utils/helm_charts/neon/core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@ name: neon-core
description: Deploy Neon Core Services

type: application
version: 0.0.12
version: 0.0.14
appVersion: "1.0.1a37"
dependencies:
- name: neon-messagebus
alias: neon-messagebus
version: 0.0.8
version: 0.0.9
repository: file://../neon-messagebus
- name: neon-speech
alias: neon-speech
version: 0.0.8
version: 0.0.9
repository: file://../neon-speech
- name: neon-skills
alias: neon-skills
version: 0.0.9
version: 0.0.10
repository: file://../neon-skills
- name: neon-audio
alias: neon-audio
version: 0.0.9
version: 0.0.10
repository: file://../neon-audio
- name: neon-enclosure
alias: neon-enclosure
version: 0.0.7
version: 0.0.8
repository: file://../neon-enclosure
- name: neon-gui
alias: neon-gui
version: 0.0.7
version: 0.0.8
repository: file://../neon-gui
- name: neon-iris
alias: iris-gradio
version: 0.0.7
version: 0.0.9
repository: file://../neon-iris
4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-audio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-audio
description: Deploy Neon Core Audio Service

type: application
version: 0.0.9
version: 0.0.10
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
9 changes: 9 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-audio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,13 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1

4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-enclosure/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-enclosure
description: Deploy Neon Core Enclosure Service

type: application
version: 0.0.7
version: 0.0.8
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
10 changes: 10 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-enclosure/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,13 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1

4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-gui/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-gui
description: Deploy Neon Core GUI Service

type: application
version: 0.0.7
version: 0.0.8
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
9 changes: 9 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-gui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,13 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1

4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-iris/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-iris
description: Deploy Neon IRIS Web UI

type: application
version: 0.0.7
version: 0.0.9
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
9 changes: 9 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-iris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,12 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 7860
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1
4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-messagebus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-messagebus
description: Deploy Neon Core Messagebus

type: application
version: 0.0.8
version: 0.0.9
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
10 changes: 10 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-messagebus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,13 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1

4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-skills/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-skills
description: Deploy Neon Core Skills Service

type: application
version: 0.0.9
version: 0.0.10
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
9 changes: 9 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-skills/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1
4 changes: 2 additions & 2 deletions neon_diana_utils/helm_charts/neon/neon-speech/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: neon-speech
description: Deploy Neon Core Speech (Voice) Service

type: application
version: 0.0.8
version: 0.0.9
appVersion: "1.0.1a37"

dependencies:
- name: base-neon
version: 0.0.6
version: 0.0.7
repository: file://../../base/base-neon
9 changes: 9 additions & 0 deletions neon_diana_utils/helm_charts/neon/neon-speech/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@ livenessProbe:
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1
startupProbe:
failureThreshold: 30
httpGet:
path: /status
port: 8000
scheme: HTTP
periodSeconds: 15
successThreshold: 1
timeoutSeconds: 1
2 changes: 1 addition & 1 deletion neon_diana_utils/templates/neon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ appVersion: "1.0.1a5"
dependencies:
- name: neon-core
alias: core
version: 0.0.12
version: 0.0.14
repository: https://neongeckocom.github.io/neon-diana-utils