Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Table of contents

* [Sandbox](README.md)
* [Requirements for building blocks](guidelines-for-bbs.md)
* [Technology stack](technologies.md)
* [Requirements for building blocks](guidelines-for-bbs.md)
13 changes: 13 additions & 0 deletions docs/technologies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Sandbox technology stack

* [OCI](https://opencontainers.org/) compliant container images, e.g. [Docker](https://www.docker.com/)
* [Kubernetes](https://kubernetes.io/)
* [Helm charts](https://helm.sh/docs/topics/charts/)
* [CI/CD](https://en.wikipedia.org/wiki/CI/CD) pipeline configurations

## Secret management
The sandbox is a testing and development environment, so it has the following requirements for managing secrets:

* Use [Kubernetes secrets](https://kubernetes.io/docs/concepts/configuration/secret/)
* Don't keep secret in git repository (encrypted as well, due to rotation policy)
* Use random generated passwords, e.g. [Helm randAlphaNum method](https://helm.sh/docs/chart_template_guide/function_list/#randalphanum-randalpha-randnumeric-and-randascii)