Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmiell committed May 25, 2021
1 parent 1413a43 commit c1446f0
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ The examples seek to be:

- Clear (eg resource names are verbose and unambiguous)

## Release Process

See [here](RELEASE_PROCESS.md)

## Sources / Thanks To

[Official Kubernetes docs](https://kubernetes.io/docs/)
Expand Down
49 changes: 49 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
== v0.0.3


- Add Kubeval test

- Added Deployment/simple-deployment-privileged.yaml

- Added Deployment/simple-deployment-with-environment.yaml

- Added Endpoints/endpoint-slice.yaml

- Added restartPolicy to Job/simple.yaml

- Added PersistentVolumeClaim/pvc.yaml

- Added Pod/spec.affinity.nodeAffinity/node-affinity.yaml

- Added Pod/spec.nodeSelector/simple.yaml

- Added Pod/spec.volumes.persistentVolumeClaim/pod-pvc.yaml

- Added PodDisruptionBudget/pod-disruption-budget-max-unavailable.yaml and PodDisruptionBudget/pod-disruption-budget-min-available.yaml

- Added PodPreset/pod-preset.yaml

- Added PriorityClass/default-priority-class.yaml

- Added Secret/simple-secret.yaml

- Added ServiceAccount/service-account-pod.yaml

- Corrected Pod/spec.containers.volumes.projected/projected.yaml

- Corrected Pod/spec.volumes.hostPath.type/file-or-create.yaml

- Corrected PodSecurityPolicy/Ingress/simple.yaml

- Corrected Service/spec.type/load-balancer.yaml


- Code of conduct, license, and contributions guidelines added

== v0.0.2

- Bugfix for v0.0.1

== v0.0.1

- Initial base examples added
31 changes: 31 additions & 0 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Kubernetes-Examples Release Process

## Fetch Tags and Diff

Get the latest tags:

```
git fetch --tag
git tag
```

Diff the current code tag from the last one, and update the `RELEASE_NOTES.md` file, eg:

```
git diff -w v0.0.2
```


## Generate code

Follow this doc to make a release in GitHub:

[Release](https://docs.github.com/en/github/administering-a-repository/releasing-projects-on-github/managing-releases-in-a-repository)

## Announce

Announce on various channels:

- Twitter

- LinkedIn

0 comments on commit c1446f0

Please sign in to comment.