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 charts/akash-hostname-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)

# Major version bit highlights the mainnet release (e.g. mainnet4 = 4.x.x, mainnet5 = 5.x.x, ...)
version: 16.0.0-rc0
version: 16.0.0-rc1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
14 changes: 13 additions & 1 deletion charts/akash-hostname-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,16 @@ spec:
valueFrom:
configMapKeyRef:
name: operator-hostname
key: gateway-implementation
Comment thread
Zblocker64 marked this conversation as resolved.
key: gateway-implementation
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/akash-inventory-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)

# Major version bit highlights the mainnet release (e.g. mainnet4 = 4.x.x, mainnet5 = 5.x.x, ...)
version: 16.0.0-rc0
version: 16.0.0-rc1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 12 additions & 0 deletions charts/akash-inventory-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,15 @@ spec:
configMap:
name: gpu-validation-script
defaultMode: 0755
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
6 changes: 6 additions & 0 deletions charts/akash-inventory-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,9 @@ inventoryConfig:
exclude:
nodes: []
node_storage: []

nodeSelector: {}

tolerations: []

affinity: {}
Loading