Merge "(fix) Add nodeSelector to Drydock Pod"
This commit is contained in:
commit
b1d24ad254
2
Makefile
2
Makefile
@ -87,7 +87,7 @@ lint: pep8 helm_lint
|
|||||||
|
|
||||||
# Dry run templating of chart
|
# Dry run templating of chart
|
||||||
.PHONY: dry-run
|
.PHONY: dry-run
|
||||||
dry-run: clean helm-init
|
dry-run: helm-init
|
||||||
$(HELM) template --set manifests.secret_ssh_key=true --set conf.ssh.private_key=foo charts/drydock
|
$(HELM) template --set manifests.secret_ssh_key=true --set conf.ssh.private_key=foo charts/drydock
|
||||||
|
|
||||||
# Initialize local helm config
|
# Initialize local helm config
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
{{- tuple "identity" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup"| set .Values.conf.drydock.keystone_authtoken "auth_url" | quote | trunc 0 -}}
|
{{- tuple "identity" "internal" "api" . | include "helm-toolkit.endpoints.keystone_endpoint_uri_lookup"| set .Values.conf.drydock.keystone_authtoken "auth_url" | quote | trunc 0 -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{- $userIdentity := .Values.endpoints.identity.auth.user -}}
|
{{- $userIdentity := .Values.endpoints.identity.auth.drydock -}}
|
||||||
|
|
||||||
{{- if empty .Values.conf.drydock.keystone_authtoken.project_name -}}
|
{{- if empty .Values.conf.drydock.keystone_authtoken.project_name -}}
|
||||||
{{- set .Values.conf.drydock.keystone_authtoken "project_name" $userIdentity.project_name | quote | trunc 0 -}}
|
{{- set .Values.conf.drydock.keystone_authtoken "project_name" $userIdentity.project_name | quote | trunc 0 -}}
|
||||||
|
@ -33,6 +33,8 @@ spec:
|
|||||||
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
|
configmap-bin-hash: {{ tuple "configmap-bin.yaml" . | include "helm-toolkit.utils.hash" }}
|
||||||
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
|
configmap-etc-hash: {{ tuple "configmap-etc.yaml" . | include "helm-toolkit.utils.hash" }}
|
||||||
spec:
|
spec:
|
||||||
|
nodeSelector:
|
||||||
|
{{ .Values.labels.api.node_selector_key }}: {{ .Values.labels.api.node_selector_value | quote }}
|
||||||
serviceAccountName: {{ $serviceAccountName }}
|
serviceAccountName: {{ $serviceAccountName }}
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
affinity:
|
affinity:
|
||||||
@ -41,6 +43,9 @@ spec:
|
|||||||
{{ tuple $envAll "api" list | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
|
{{ tuple $envAll "api" list | include "helm-toolkit.snippets.kubernetes_entrypoint_init_container" | indent 8 }}
|
||||||
containers:
|
containers:
|
||||||
- name: drydock-api
|
- name: drydock-api
|
||||||
|
image: {{ .Values.images.tags.drydock }}
|
||||||
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
||||||
|
{{ tuple $envAll $envAll.Values.pod.resources.api | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
||||||
env:
|
env:
|
||||||
- name: 'MAAS_API_KEY'
|
- name: 'MAAS_API_KEY'
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@ -51,9 +56,6 @@ spec:
|
|||||||
value: {{ .Values.conf.uwsgi.workers | default 1 | quote }}
|
value: {{ .Values.conf.uwsgi.workers | default 1 | quote }}
|
||||||
- name: 'DRYDOCK_API_THREADS'
|
- name: 'DRYDOCK_API_THREADS'
|
||||||
value: {{ .Values.conf.uwsgi.threads | default 1 | quote }}
|
value: {{ .Values.conf.uwsgi.threads | default 1 | quote }}
|
||||||
image: {{ .Values.images.tags.drydock }}
|
|
||||||
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
||||||
{{ tuple $envAll $envAll.Values.pod.resources.api | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
|
||||||
ports:
|
ports:
|
||||||
- name: drydock-api
|
- name: drydock-api
|
||||||
containerPort: {{ tuple "physicalprovisioner" "default" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
containerPort: {{ tuple "physicalprovisioner" "default" "api" . | include "helm-toolkit.endpoints.endpoint_port_lookup" }}
|
||||||
|
17
charts/drydock/templates/ingress.yaml
Normal file
17
charts/drydock/templates/ingress.yaml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
{{/* # Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
|
||||||
|
#
|
||||||
|
# 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. */}}
|
||||||
|
{{- if .Values.manifests.ingress_drydock }}
|
||||||
|
{{ dict "envAll" . "backendServiceType" "physicalprovisioner" "backendPort" "drydock-api" | include "helm-toolkit.manifests.ingress" }}
|
||||||
|
{{- end -}}
|
@ -45,7 +45,14 @@ images:
|
|||||||
network:
|
network:
|
||||||
api:
|
api:
|
||||||
nodeport:
|
nodeport:
|
||||||
enabled: true
|
enabled: false
|
||||||
|
ingress:
|
||||||
|
public: true
|
||||||
|
classes:
|
||||||
|
namespace: "nginx"
|
||||||
|
cluster: "nginx-cluster"
|
||||||
|
annotations:
|
||||||
|
nginx.ingress.kubernetes.io/rewrite-target: /
|
||||||
|
|
||||||
pod:
|
pod:
|
||||||
lifecycle:
|
lifecycle:
|
||||||
@ -127,6 +134,7 @@ manifests:
|
|||||||
configmap_etc: true
|
configmap_etc: true
|
||||||
configmap_bin: true
|
configmap_bin: true
|
||||||
service_drydock: true
|
service_drydock: true
|
||||||
|
ingress_drydock: true
|
||||||
deployment_drydock: true
|
deployment_drydock: true
|
||||||
test_drydock_api: true
|
test_drydock_api: true
|
||||||
test_drydock_auth: true
|
test_drydock_auth: true
|
||||||
@ -215,6 +223,7 @@ endpoints:
|
|||||||
name: drydock
|
name: drydock
|
||||||
hosts:
|
hosts:
|
||||||
default: drydock-api
|
default: drydock-api
|
||||||
|
public: drydock
|
||||||
port:
|
port:
|
||||||
api:
|
api:
|
||||||
default: 9000
|
default: 9000
|
||||||
@ -225,6 +234,7 @@ endpoints:
|
|||||||
default: http
|
default: http
|
||||||
host_fqdn_override:
|
host_fqdn_override:
|
||||||
default: null
|
default: null
|
||||||
|
public: drydock.test.local
|
||||||
postgresql:
|
postgresql:
|
||||||
name: postgresql
|
name: postgresql
|
||||||
auth:
|
auth:
|
||||||
|
Loading…
Reference in New Issue
Block a user