{# Copyright 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. #} --- apiVersion: apps/v1 kind: DaemonSet metadata: name: registry-update namespace: kube-system spec: selector: matchLabels: name: registry-update template: metadata: labels: name: registry-update spec: priorityClassName: "system-cluster-critical" dnsPolicy: ClusterFirst nodeSelector: nodetype: caas_master tolerations: - key: "node-maintenancemode" value: "enabled" operator: "Equal" effect: "NoExecute" securityContext: runAsUser: {{ caas.uid.dockerreg }} containers: - name: registry-update image: {{ container_image_names | select('search', '/registry:') | list | last }} env: - name: INTERFACE_NAME value: "{{ caas.internal_flannel_interface }}" - name: REGISTRY_PORT value: "{{ caas.update_registry_port }}" - name: REGISTRY_CONFIG value: /etc/docker-registry/docker-registry-update-config.yml resources: requests: cpu: "10m" volumeMounts: - name: time-mount mountPath: /etc/localtime readOnly: true - name: config mountPath: /etc/docker-registry/ readOnly: true - name: store mountPath: {{ caas.registry_directory }} - name: ca mountPath: /etc/ssl/certs/ readOnly: true volumes: - name: time-mount hostPath: path: /etc/localtime - name: config hostPath: path: /etc/docker-update-registry/ - name: store hostPath: path: {{ caas.registry_directory }} - name: ca hostPath: path: /etc/openssl/