diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a40b2d7e8..fc7f89322 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,6 +11,7 @@ `bug`, `enhancement`, `documentation`, `change`, `breaking`, `dependency` as they show up in the changelog - [ ] PR contains the label `area:operator` +- [ ] Commits are [signed off](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits) - [ ] Link this PR to related issues - [ ] I have not made _any_ changes in the `charts/` directory. @@ -21,6 +22,7 @@ as they show up in the changelog - [ ] PR contains the label `area:chart` - [ ] PR contains the chart label, e.g. `chart:k8up` +- [ ] Commits are [signed off](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits) - [ ] Variables are documented in the values.yaml using the format required by [Helm-Docs](https://github.com/norwoodj/helm-docs#valuesyaml-metadata). - [ ] Chart Version bumped if immediate release after merging is planned - [ ] I have run `make chart-docs` diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 000000000..8aa2523b8 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,28 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: test-deployment + labels: + app: test-app +spec: + replicas: 1 + selector: + matchLabels: + app: test-app + template: + metadata: + labels: + app: test-app + spec: + containers: + - name: test + image: busybox + command: ["sleep", "100000"] + volumeMounts: + - name: test + mountPath: /test + volumes: + - name: test + persistentVolumeClaim: + claimName: test-pvc