--- kind: pipeline type: kubernetes name: linter platform: os: linux arch: amd64 steps: - name: markdown lint commands: - markdownlint *.md image: docker.io/volkerraschek/markdownlint:0.31.1 resources: limits: cpu: 50 memory: 50M - name: email-notification environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address image: docker.io/drillster/drone-email:latest resources: limits: cpu: 50 memory: 25M when: status: - changed - failure trigger: event: exclude: - tag --- kind: pipeline type: docker name: dry-run-amd64 platform: os: linux arch: amd64 steps: - name: build image: plugins/docker settings: dockerfile: Dockerfile auto_tag: false dry_run: true tags: latest-amd64 repo: volkerraschek/dhcpd username: from_secret: container_image_registry_user password: from_secret: container_image_registry_password no_cache: true volumes: - name: docker_socket path: /var/run/docker.sock - name: notify image: drillster/drone-email environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address when: status: - changed - failure volumes: - name: docker_socket host: path: /var/run/docker.sock depends_on: - linter trigger: branch: exclude: - master event: - pull_request - push repo: - volker.raschek/dhcpd-docker --- kind: pipeline type: docker name: latest-amd64 platform: os: linux arch: amd64 steps: - name: build image: plugins/docker settings: dockerfile: Dockerfile auto_tag: false tags: latest-amd64 repo: volkerraschek/dhcpd username: from_secret: container_image_registry_user password: from_secret: container_image_registry_password no_cache: true volumes: - name: docker_socket path: /var/run/docker.sock - name: notify image: drillster/drone-email environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address when: status: - changed - failure volumes: - name: docker_socket host: path: /var/run/docker.sock depends_on: - linter trigger: branch: - master event: - cron - push repo: - volker.raschek/dhcpd-docker --- kind: pipeline type: kubernetes name: latest-manifest steps: - name: build-manifest image: plugins/manifest settings: auto_tag: false ignore_missing: true spec: manifest.tmpl username: from_secret: container_image_registry_user password: from_secret: container_image_registry_password - name: notify image: docker.io/drillster/drone-email:latest environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address resources: limits: cpu: 50 memory: 25M when: status: - changed - failure depends_on: - latest-amd64 trigger: branch: - master event: - cron - push repo: - volker.raschek/dhcpd-docker --- kind: pipeline type: docker name: tagged-amd64 platform: os: linux arch: amd64 steps: - name: build image: plugins/docker settings: dockerfile: Dockerfile auto_tag: true auto_tag_suffix: amd64 repo: volkerraschek/dhcpd username: from_secret: container_image_registry_user password: from_secret: container_image_registry_password no_cache: true volumes: - name: docker_socket path: /var/run/docker.sock - name: notify image: drillster/drone-email environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address when: status: - changed - failure volumes: - name: docker_socket host: path: /var/run/docker.sock trigger: event: - tag repo: - volker.raschek/dhcpd-docker --- kind: pipeline type: kubernetes name: tagged-manifest steps: - name: build-manifest image: plugins/manifest settings: auto_tag: true ignore_missing: true spec: manifest.tmpl username: from_secret: container_image_registry_user password: from_secret: container_image_registry_password - name: notify image: docker.io/drillster/drone-email:latest environment: PLUGIN_HOST: from_secret: smtp_host PLUGIN_USERNAME: from_secret: smtp_username PLUGIN_PASSWORD: from_secret: smtp_password PLUGIN_FROM: from_secret: smtp_mail_address resources: limits: cpu: 50 memory: 25M when: status: - changed - failure depends_on: - tagged-amd64 trigger: event: - tag repo: - volker.raschek/dhcpd-docker