From 532e611e68a308d06ae5aca6236bfe5dece080c6 Mon Sep 17 00:00:00 2001 From: bom Date: Wed, 9 Feb 2022 10:48:24 +0100 Subject: [PATCH] copied c4k base from c4k-shynet --- .gitignore | 28 +++ .gitlab-ci.yml | 125 +++++++++++ LICENSE | 201 +++++++++++++++++ README.md | 103 +++------ create_admin.sh | 9 + doc/Development.md | 110 ++++++++++ doc/Releasing.md | 14 ++ doc/SUBCOMPONENT_LICENSE | 206 ++++++++++++++++++ doc/SetupOnHetzner.md | 73 +++++++ doc/tryItOut.png | Bin 0 -> 90271 bytes package.json | 33 +++ project.clj | 42 ++++ public/index.html | 18 ++ shadow-cljs.edn | 16 ++ src/main/clj/dda/c4k_shynet/uberjar.clj | 56 +++++ src/main/cljc/dda/c4k_shynet/core.cljc | 44 ++++ src/main/cljc/dda/c4k_shynet/shynet.cljc | 79 +++++++ src/main/cljs/dda/c4k_shynet/browser.cljs | 67 ++++++ src/main/resources/logback.xml | 50 +++++ src/main/resources/shynet/certificate.yaml | 13 ++ src/main/resources/shynet/deployments.yaml | 27 +++ src/main/resources/shynet/ingress.yaml | 28 +++ src/main/resources/shynet/secret.yaml | 32 +++ src/main/resources/shynet/service-redis.yaml | 11 + .../resources/shynet/service-webserver.yaml | 10 + src/main/resources/shynet/statefulset.yaml | 22 ++ src/test/cljc/dda/c4k_shynet/shynet_test.cljc | 107 +++++++++ valid-auth.edn | 3 + valid-config.edn | 3 + 29 files changed, 1453 insertions(+), 77 deletions(-) create mode 100644 .gitignore create mode 100644 .gitlab-ci.yml create mode 100644 LICENSE create mode 100755 create_admin.sh create mode 100644 doc/Development.md create mode 100644 doc/Releasing.md create mode 100644 doc/SUBCOMPONENT_LICENSE create mode 100644 doc/SetupOnHetzner.md create mode 100644 doc/tryItOut.png create mode 100644 package.json create mode 100644 project.clj create mode 100644 public/index.html create mode 100644 shadow-cljs.edn create mode 100644 src/main/clj/dda/c4k_shynet/uberjar.clj create mode 100644 src/main/cljc/dda/c4k_shynet/core.cljc create mode 100644 src/main/cljc/dda/c4k_shynet/shynet.cljc create mode 100644 src/main/cljs/dda/c4k_shynet/browser.cljs create mode 100644 src/main/resources/logback.xml create mode 100644 src/main/resources/shynet/certificate.yaml create mode 100644 src/main/resources/shynet/deployments.yaml create mode 100644 src/main/resources/shynet/ingress.yaml create mode 100644 src/main/resources/shynet/secret.yaml create mode 100644 src/main/resources/shynet/service-redis.yaml create mode 100644 src/main/resources/shynet/service-webserver.yaml create mode 100644 src/main/resources/shynet/statefulset.yaml create mode 100644 src/test/cljc/dda/c4k_shynet/shynet_test.cljc create mode 100644 valid-auth.edn create mode 100644 valid-config.edn diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ab17090 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +.clj-kondo/ +.lsp/ + +# pybuilder +.pybuilder/ +__pycache__/ + +# lein +target/ +.lein-repl-history +.lein-failures +pom.* + +# cljs +.shadow-cljs +.nrepl-* +package-lock.json +node_modules/ +public/js/ + +# ide +.calva + +*.iml +.idea/ + +auth.edn +config.edn diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..796c358 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,125 @@ +stages: + - build_and_test + - package + - security + - upload + - image + +services: + - docker:19.03.12-dind + +.cljs-job: &cljs + image: domaindrivenarchitecture/shadow-cljs + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - node_modules/ + - .shadow-cljs/ + - .m2 + before_script: + - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc + - npm install + +.clj-uploadjob: &clj + image: domaindrivenarchitecture/lein + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - .m2 + before_script: + - mkdir -p /root/.lein + - echo "{:auth {:repository-auth {#\"clojars\" {:username \"${CLOJARS_USER}\" :password \"${CLOJARS_TOKEN_DOMAINDRIVENARCHITECTURE}\" }}}}" > ~/.lein/profiles.clj + +test-cljs: + <<: *cljs + stage: build_and_test + script: + - shadow-cljs compile test + +test-clj: + <<: *clj + stage: build_and_test + script: + - lein test + +test-schema: + <<: *clj + stage: build_and_test + script: + - lein uberjar + - java -jar target/uberjar/c4k-shynet-standalone.jar valid-config.edn valid-auth.edn | kubeconform --kubernetes-version 1.19.0 --strict --skip Certificate - + artifacts: + paths: + - target/uberjar + +report-frontend: + <<: *cljs + stage: package + script: + - mkdir -p target/frontend-build + - shadow-cljs run shadow.cljs.build-report frontend target/frontend-build/build-report.html + artifacts: + paths: + - target/frontend-build/build-report.html + +package-frontend: + <<: *cljs + stage: package + script: + - mkdir -p target/frontend-build + - shadow-cljs release frontend + - cp public/js/main.js target/frontend-build/c4k-shynet.js + - sha256sum target/frontend-build/c4k-shynet.js > target/frontend-build/c4k-shynet.js.sha256 + - sha512sum target/frontend-build/c4k-shynet.js > target/frontend-build/c4k-shynet.js.sha512 + artifacts: + paths: + - target/frontend-build + +package-uberjar: + <<: *clj + stage: package + script: + - sha256sum target/uberjar/c4k-shynet-standalone.jar > target/uberjar/c4k-shynet-standalone.jar.sha256 + - sha512sum target/uberjar/c4k-shynet-standalone.jar > target/uberjar/c4k-shynet-standalone.jar.sha512 + artifacts: + paths: + - target/uberjar + +sast: + variables: + SAST_EXCLUDED_ANALYZERS: + bandit, brakeman, flawfinder, gosec, kubesec, phpcs-security-audit, + pmd-apex, security-code-scan, sobelow, spotbugs + stage: security + before_script: + - mkdir -p builds && cp -r target/ builds/ +include: + - template: Security/SAST.gitlab-ci.yml + +upload-clj-prerelease: + <<: *clj + stage: upload + rules: + - if: '$CI_COMMIT_BRANCH == "main" && $CI_COMMIT_TAG == null' + script: + - lein deploy clojars + +release: + image: registry.gitlab.com/gitlab-org/release-cli:latest + stage: upload + rules: + - if: '$CI_COMMIT_TAG != null' + artifacts: + paths: + - target/uberjar + - target/frontend-build + script: + - apk --no-cache add curl + - | + release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG \ + --assets-link "{\"name\":\"c4k-shynet-standalone.jar\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-shynet-standalone.jar\"}" \ + --assets-link "{\"name\":\"c4k-shynet-standalone.jar.sha256\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-shynet-standalone.jar.sha256\"}" \ + --assets-link "{\"name\":\"c4k-shynet-standalone.jar.sha512\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/uberjar/c4k-shynet-standalone.jar.sha512\"}" \ + --assets-link "{\"name\":\"c4k-shynet.js\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-shynet.js\"}" \ + --assets-link "{\"name\":\"c4k-shynet.js.sha256\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-shynet.js.sha256\"}" \ + --assets-link "{\"name\":\"c4k-shynet.js.sha512\",\"url\":\"https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/jobs/${CI_JOB_ID}/artifacts/file/target/frontend-build/c4k-shynet.js.sha512\"}" \ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/README.md b/README.md index 636cb1c..59cde74 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,41 @@ -# c4k-jitsi +# convention 4 kubernetes: c4k-shynet +[![Clojars Project](https://img.shields.io/clojars/v/org.domaindrivenarchitecture/c4k-shynet.svg)](https://clojars.org/org.domaindrivenarchitecture/c4k-shynet) [![pipeline status](https://gitlab.com/domaindrivenarchitecture/c4k-shynet/badges/master/pipeline.svg)](https://gitlab.com/domaindrivenarchitecture/c4k-shynet/-/commits/main) +[DeltaChat chat over e-mail](mailto:buero@meissa-gmbh.de?subject=community-chat) | [team@social.meissa-gmbh.de team@social.meissa-gmbh.de](https://social.meissa-gmbh.de/@team) | [Website & Blog](https://domaindrivenarchitecture.org) +## Purpose -## Getting started +c4k-shynet provides a k8s deployment for shynet containing: +* shynet +* ingress having a letsencrypt managed certificate +* postgres database -To make it easy for you to get started with GitLab, here's a list of recommended next steps. +The package aims to a low load sceanrio. -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! +## Status -## Add your files +Stable - we use this setup on production. -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: +## Try out -``` -cd existing_repo -git remote add origin https://gitlab.com/domaindrivenarchitecture/c4k-jitsi.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://gitlab.com/domaindrivenarchitecture/c4k-jitsi/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. +Click on the image to try out live in your browser: -## Suggestions for a good README -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. +[![Try it out](doc/tryItOut.png "Try out yourself")](https://domaindrivenarchitecture.org/pages/dda-provision/c4k-shynet/) -## Name -Choose a self-explaining name for your project. +Your input will stay in your browser. No server interaction is required. -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. +You will also be able to try out on cli: +``` +target/graalvm/c4k-shynet src/test/resources/valid-config.edn src/test/resources/valid-auth.edn | kubeval - +target/graalvm/c4k-shynet src/test/resources/valid-config.edn src/test/resources/valid-auth.edn | kubectl apply -f - +``` -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. +## Documentation +* [Example Setup on Hetzner](doc/SetupOnHetzner.md) +* [Development](doc/Development.md) ## License -For open source projects, say how it is licensed. -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. +Copyright © 2022 meissa GmbH +Licensed under the [Apache License, Version 2.0](LICENSE) (the "License") +Pls. find licenses of our subcomponents [here](doc/SUBCOMPONENT_LICENSE) \ No newline at end of file diff --git a/create_admin.sh b/create_admin.sh new file mode 100755 index 0000000..2bd652f --- /dev/null +++ b/create_admin.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +if [ $# != 4 ] +then + echo "expected 4 arguments (webserver-pod-name, username, email, password)" + exit -1 +fi + +kubectl exec $1 -- python3 manage.py shell -c "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('$2', '$3', '$4')" diff --git a/doc/Development.md b/doc/Development.md new file mode 100644 index 0000000..1740e9a --- /dev/null +++ b/doc/Development.md @@ -0,0 +1,110 @@ +# Project Setup + +## clj setup + +### install leiningen +``` +sudo apt install leiningen +``` +or manually using Instructions on https://leiningen.org/#install + +### install vscode + extensions +``` +sudo snap install code +``` +or with packages from https://code.visualstudio.com/Download + +install extension "Calva: Clojure & ClojureScript Interactive Programming" + +## cljs / js-dev setup + +``` +sudo apt install npm +sudo npm install -g npx + +# maybe +sudo npm install -g shadow-cljs + +# in project root to retrieve all dependencies +npm install --ignore-scripts +npx shadow-cljs compile test +``` + +### create frontend script + +``` +npx shadow-cljs release frontend +``` + +## graalvm-setup + +``` +curl -LO https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-21.0.0.2/graalvm-ce-java11-linux-amd64-21.0.0.2.tar.gz + +# unpack +tar -xzf graalvm-ce-java11-linux-amd64-21.0.0.2.tar.gz + +sudo mv graalvm-ce-java11-21.0.0.2 /usr/lib/jvm/ +sudo ln -s /usr/lib/jvm/graalvm-ce-java11-21.0.0.2 /usr/lib/jvm/graalvm +sudo ln -s /usr/lib/jvm/graalvm/bin/gu /usr/local/bin +sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/graalvm/bin/java 2 +sudo update-alternatives --config java + +# install native-image in graalvm-ce-java11-linux-amd64-21.0.0.2/bin +sudo gu install native-image +sudo ln -s /usr/lib/jvm/graalvm/bin/native-image /usr/local/bin + +# deps +sudo apt-get install build-essential libz-dev zlib1g-dev + +# build +cd ~/repo/dda/c4k-shynet +lein uberjar +mkdir -p target/graalvm +lein native + +# execute +./target/graalvm/c4k-shynet -h +./target/graalvm/c4k-shynet src/test/resources/valid-config.edn src/test/resources/valid-auth.edn +./target/graalvm/c4k-shynet src/test/resources/invalid-config.edn src/test/resources/invalid-auth.edn +``` + +## c4k-setup +### install kubectl + +``` +sudo -i +curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - +echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" \ + | tee -a /etc/apt/sources.list.d/kubernetes.list +apt update && apt install kubectl +kubectl completion bash >> /etc/bash_completion.d/kubernetes +``` + +### install kubeconform + +``` +curl -Lo /tmp/kubeconform.tar.gz https://github.com/yannh/kubeconform/releases/download/v0.4.7/kubeconform-linux-amd64.tar.gz +tar -xf /tmp/kubeconform.tar.gz +sudo cp kubeconform /usr/local/bin +``` + +### remote access to c4k + +``` +scp -r root@devops.test.meissa-gmbh.de:/home/c4k/.kube ~/ +ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@devops.test.meissa-gmbh.de -L 8002:localhost:8002 -L 6443:192.168.5.1:6443 + +# add in /etc/hosts "127.0.0.1 kubernetes" + +# change in ~/.kube/config 192.168.5.1 -> kubernetes + +kubectl get pods +``` + +### deploy shynet + +``` +java -jar target/uberjar/c4k-shynet-standalone.jar valid-config.edn valid-auth.edn | kubeconform --kubernetes-version 1.19.0 --strict --skip Certificate - +java -jar target/uberjar/c4k-shynet-standalone.jar valid-config.edn my-auth.edn | kubectl apply -f - +``` diff --git a/doc/Releasing.md b/doc/Releasing.md new file mode 100644 index 0000000..e3aa755 --- /dev/null +++ b/doc/Releasing.md @@ -0,0 +1,14 @@ +# stable release (should be done from master) + +``` +#adjust [version] +vi package.json + +lein release +git push --follow-tags + +# bump version - increase version and add -SNAPSHOT +vi package.json +git commit -am "version bump" +git push +``` \ No newline at end of file diff --git a/doc/SUBCOMPONENT_LICENSE b/doc/SUBCOMPONENT_LICENSE new file mode 100644 index 0000000..581c523 --- /dev/null +++ b/doc/SUBCOMPONENT_LICENSE @@ -0,0 +1,206 @@ +SUBCOMPONENTS: + +This Software includes a number of subcomponents with +separate copyright notices and license terms. Your use of the source +code for the these subcomponents is subject to the terms and +conditions of the following licenses. + +lein with-profile uberjar licenses +... + + + +Eclipse Public License, Version 1.0 (EPL-1.0) + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + + a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and + b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. + +"Program" means the Contributions distributed in accordance with this Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. + +2. GRANT OF RIGHTS + + a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. + b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. + c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. + d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + b) a copy of this Agreement must be included with each copy of the Program. + +Contributors may not remove or alter any copyright notices contained within the Program. + +Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. + +For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. +------------------------------------------------------------------------------- + +The MIT License (MIT) + +Copyright © 2015 Stuart Sierra + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +------------------------------------------------------------------------------- + +The BSD 3-Clause License The following is a BSD 3-Clause ("BSD New" or "BSD Simplified") license template. To generate your own license, change the values of OWNER, ORGANIZATION and YEAR from their original values as given here, and substitute your own. + +Note: You may omit clause 3 and still be OSD-conformant. Despite its colloquial name "BSD New", this is not the newest version of the BSD license; it was followed by the even newer BSD-2-Clause version, sometimes known as the "Simplified BSD License". On January 9th, 2008 the OSI Board approved BSD-2-Clause, which is used by FreeBSD and others. It omits the final "no-endorsement" clause and is thus roughly equivalent to the MIT License. + +Historical Background: The original license used on BSD Unix had four clauses. The advertising clause (the third of four clauses) required you to acknowledge use of U.C. Berkeley code in your advertising of any product using that code. It was officially rescinded by the Director of the Office of Technology Licensing of the University of California on July 22nd, 1999. He states that clause 3 is "hereby deleted in its entirety." The four clause license has not been approved by OSI. The license below does not contain the advertising clause. + +This prelude is not part of the license. + +OWNER = Regents of the University of California + +ORGANIZATION = University of California, Berkeley + +YEAR = 1998 + +In the original BSD license, both occurrences of the phrase "COPYRIGHT HOLDERS AND CONTRIBUTORS" in the disclaimer read "REGENTS AND CONTRIBUTORS". +License template + +Copyright (c) $YEAR $OWNER, All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +------------------------------------------------------------------------------ + + +GNU LESSER GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. + +This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. +0. Additional Definitions. + +As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License. + +“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. + +An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. + +A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”. + +The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. + +The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. +1. Exception to Section 3 of the GNU GPL. + +You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. +2. Conveying Modified Versions. + +If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: + + a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or + b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. + +3. Object Code Incorporating Material from Library Header Files. + +The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. + b) Accompany the object code with a copy of the GNU GPL and this license document. + +4. Combined Works. + +You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: + + a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. + b) Accompany the Combined Work with a copy of the GNU GPL and this license document. + c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. + d) Do one of the following: + 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. + 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. + e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) + +5. Combined Libraries. + +You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. + b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. + +6. Revised Versions of the GNU Lesser General Public License. + +The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. + +If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. + +------------------------------------------------------------------------------ +License + +Copyright (c) 2000 - 2018 The Legion of the Bouncy Castle Inc. (https://www.bouncycastle.org) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/doc/SetupOnHetzner.md b/doc/SetupOnHetzner.md new file mode 100644 index 0000000..91bfdea --- /dev/null +++ b/doc/SetupOnHetzner.md @@ -0,0 +1,73 @@ +# Setup +## Infrastructure on Hetzner / Aws + +For a setup on hetzner / aws we use terraform. + +``` +resource "aws_s3_bucket" "backup" { + bucket = "backup" + acl = "private" + + versioning { + enabled = false + } + tags = { + name = "backup" + Description = "bucket for backups in stage: ${var.stage}" + } +} + +resource "hcloud_server" "shynet_09_2021" { + name = "the name" + image = "ubuntu-20.04" + server_type = "cx31" + location = "fsn1" + ssh_keys = ... + + lifecycle { + ignore_changes = [ssh_keys] + } +} + +resource "aws_route53_record" "v4_neu" { + zone_id = the_dns_zone + name = "shynet-neu" + type = "A" + ttl = "300" + records = [hcloud_server.shynet_09_2021.ipv4_address] +} + +output "ipv4" { + value = hcloud_server.shynet_09_2021.ipv4_address +} + +``` + +## k8s minicluster + +For k8s installation we use our [dda-k8s-crate](https://github.com/DomainDrivenArchitecture/dda-k8s-crate) with the following configuation: + + +``` +{:user :k8s + :k8s {:external-ip "ip-from-above"} + :cert-manager :letsencrypt-prod-issuer + :persistent-dirs ["postgres"] + } +``` + +## kubectl apply c4k-shynet + +The last step for applying the shynet deployment is + +``` +c4k-shynet config.edn auth.edn | kubectl apply -f - +``` + +with the following config.edn: + +``` +{:fqdn "the-fqdn-from aws_route53_record.v4_neu" + :postgres-data-volume-path "/var/postgres" ;; Volume was configured at dda-k8s-crate, results in a PersistentVolume definition. + :issuer :prod } +``` diff --git a/doc/tryItOut.png b/doc/tryItOut.png new file mode 100644 index 0000000000000000000000000000000000000000..21616dc18babf2962936390fde16cd6ede8e350e GIT binary patch literal 90271 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%0A+uJkFA9lY! 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 + + + + + c4k-shynet + + + + + + +
+ + + + \ No newline at end of file diff --git a/shadow-cljs.edn b/shadow-cljs.edn new file mode 100644 index 0000000..f80082a --- /dev/null +++ b/shadow-cljs.edn @@ -0,0 +1,16 @@ +{:source-paths ["src/main/cljc" + "src/main/cljs" + "src/main/resources" + "src/test/cljc" + "src/test/cljs" + "src/test/resources"] + :dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "1.0.0"] + [hickory "0.7.1"]] + :builds {:frontend {:target :browser + :modules {:main {:init-fn dda.c4k-shynet.browser/init}} + :release {} + :compiler-options {:optimizations :advanced}} + :test {:target :node-test + :output-to "target/node-tests.js" + :autorun true + :repl-pprint true}}} \ No newline at end of file diff --git a/src/main/clj/dda/c4k_shynet/uberjar.clj b/src/main/clj/dda/c4k_shynet/uberjar.clj new file mode 100644 index 0000000..57a2995 --- /dev/null +++ b/src/main/clj/dda/c4k_shynet/uberjar.clj @@ -0,0 +1,56 @@ +(ns dda.c4k-shynet.uberjar + (:gen-class) + (:require + [clojure.spec.alpha :as s] + [clojure.string :as cs] + [clojure.tools.reader.edn :as edn] + [expound.alpha :as expound] + [dda.c4k-shynet.core :as core])) + +(def usage + "usage: + + c4k-shynet {your configuraton file} {your authorization file}") + +(s/def ::options (s/* #{"-h"})) +(s/def ::filename (s/and string? + #(not (cs/starts-with? % "-")))) +(s/def ::cmd-args (s/cat :options ::options + :args (s/? + (s/cat :config ::filename + :auth ::filename)))) + +(defn expound-config + [config] + (expound/expound ::core/config config)) + +(defn invalid-args-msg + [spec args] + (s/explain spec args) + (println (str "Bad commandline arguments\n" usage))) + +(defn -main [& cmd-args] + (let [parsed-args-cmd (s/conform ::cmd-args cmd-args)] + (if (= ::s/invalid parsed-args-cmd) + (invalid-args-msg ::cmd-args cmd-args) + (let [{:keys [options args]} parsed-args-cmd + {:keys [config auth]} args] + (cond + (some #(= "-h" %) options) + (println usage) + :default + (let [config-str (slurp config) + auth-str (slurp auth) + config-edn (edn/read-string config-str) + auth-edn (edn/read-string auth-str) + config-valid? (s/valid? core/config? config-edn) + auth-valid? (s/valid? core/auth? auth-edn)] + (if (and config-valid? auth-valid?) + (println (core/generate config-edn auth-edn)) + (do + (when (not config-valid?) + (println + (expound/expound-str core/config? config-edn {:print-specs? false}))) + (when (not auth-valid?) + (println + (expound/expound-str core/auth? auth-edn {:print-specs? false}))))))))))) diff --git a/src/main/cljc/dda/c4k_shynet/core.cljc b/src/main/cljc/dda/c4k_shynet/core.cljc new file mode 100644 index 0000000..d0d5a63 --- /dev/null +++ b/src/main/cljc/dda/c4k_shynet/core.cljc @@ -0,0 +1,44 @@ +(ns dda.c4k-shynet.core + (:require + [clojure.string :as cs] + [clojure.spec.alpha :as s] + #?(:clj [orchestra.core :refer [defn-spec]] + :cljs [orchestra.core :refer-macros [defn-spec]]) + [dda.c4k-common.yaml :as yaml] + [dda.c4k-common.postgres :as postgres] + [dda.c4k-shynet.shynet :as shynet])) + +(def config-defaults {:issuer :staging}) + +(def config? (s/keys :req-un [::shynet/fqdn] + :opt-un [::shynet/issuer ::shynet/ingress-type])) + +(def auth? (s/keys :req-un [::shynet/django-secret-key + ::postgres/postgres-db-user ::postgres/postgres-db-password])) + +(defn k8s-objects [config] + (into + [] + (concat + [(yaml/to-string (postgres/generate-config {:postgres-size :2gb :db-name "shynet"})) + (yaml/to-string (postgres/generate-secret config)) + (yaml/to-string (postgres/generate-persistent-volume {:postgres-data-volume-path "/var/postgres"})) + (yaml/to-string (postgres/generate-pvc)) + (yaml/to-string (postgres/generate-deployment :postgres-image "postgres:14")) + (yaml/to-string (postgres/generate-service))] + [(yaml/to-string (shynet/generate-secret config)) + (yaml/to-string (shynet/generate-webserver-deployment)) + (yaml/to-string (shynet/generate-celeryworker-deployment)) + (yaml/to-string (shynet/generate-ingress config)) + (yaml/to-string (shynet/generate-certificate config)) + (yaml/to-string (shynet/generate-service-redis)) + (yaml/to-string (shynet/generate-service-webserver)) + (yaml/to-string (shynet/generate-statefulset))]))) + +(defn-spec generate any? + [my-config config? + my-auth auth?] + (let [resulting-config (merge config-defaults my-config my-auth)] + (cs/join + "\n---\n" + (k8s-objects resulting-config)))) diff --git a/src/main/cljc/dda/c4k_shynet/shynet.cljc b/src/main/cljc/dda/c4k_shynet/shynet.cljc new file mode 100644 index 0000000..e5e708b --- /dev/null +++ b/src/main/cljc/dda/c4k_shynet/shynet.cljc @@ -0,0 +1,79 @@ +(ns dda.c4k-shynet.shynet + (:require + [clojure.spec.alpha :as s] + #?(:cljs [shadow.resource :as rc]) + [dda.c4k-common.yaml :as yaml] + [dda.c4k-common.common :as cm] + [dda.c4k-common.predicate :as pred])) + +(s/def ::fqdn pred/fqdn-string?) +(s/def ::issuer pred/letsencrypt-issuer?) +(s/def ::django-secret-key pred/bash-env-string?) + +(defn ingress-type? + [input] + (contains? #{:traefik :default} input)) + +(s/def ::ingress-type ingress-type?) + +#?(:cljs + (defmethod yaml/load-resource :shynet [resource-name] + (case resource-name + "shynet/secret.yaml" (rc/inline "shynet/secret.yaml") + "shynet/certificate.yaml" (rc/inline "shynet/certificate.yaml") + "shynet/deployments.yaml" (rc/inline "shynet/deployments.yaml") + "shynet/ingress.yaml" (rc/inline "shynet/ingress.yaml") + "shynet/service-redis.yaml" (rc/inline "shynet/service-redis.yaml") + "shynet/service-webserver.yaml" (rc/inline "shynet/service-webserver.yaml") + "shynet/statefulset.yaml" (rc/inline "shynet/statefulset.yaml") + (throw (js/Error. "Undefined Resource!"))))) + +(defn generate-secret [config] + (let [{:keys [fqdn django-secret-key postgres-db-user postgres-db-password]} config] + (-> + (yaml/from-string (yaml/load-resource "shynet/secret.yaml")) + ; See comment in secret.yaml + ;(assoc-in [:stringData :ALLOWED_HOSTS] fqdn) + (assoc-in [:stringData :DJANGO_SECRET_KEY] django-secret-key) + (assoc-in [:stringData :DB_USER] postgres-db-user) + (assoc-in [:stringData :DB_PASSWORD] postgres-db-password)))) + +(defn generate-certificate [config] + (let [{:keys [fqdn issuer]} config + letsencrypt-issuer (str "letsencrypt-" (name issuer) "-issuer")] + (-> + (yaml/from-string (yaml/load-resource "shynet/certificate.yaml")) + (assoc-in [:spec :commonName] fqdn) + (assoc-in [:spec :dnsNames] [fqdn]) + (assoc-in [:spec :issuerRef :name] letsencrypt-issuer)))) + +(defn generate-webserver-deployment [] + (let [shynet-application "shynet-webserver"] + (-> (yaml/from-string (yaml/load-resource "shynet/deployments.yaml")) + (cm/replace-all-matching-values-by-new-value "shynet-application" shynet-application) + (update-in [:spec :template :spec :containers 0] dissoc :command)))) + +(defn generate-celeryworker-deployment [] + (let [shynet-application "shynet-celeryworker"] + (-> (yaml/from-string (yaml/load-resource "shynet/deployments.yaml")) + (cm/replace-all-matching-values-by-new-value "shynet-application" shynet-application)))) + +(defn generate-ingress [config] + (let [{:keys [fqdn issuer ingress-type] + :or {issuer :staging ingress-type :default}} config + letsencrypt-issuer (str "letsencrypt-" (name issuer) "-issuer") + ingress-kind (if (= :default ingress-type) "" (name ingress-type))] + (-> + (yaml/from-string (yaml/load-resource "shynet/ingress.yaml")) + (assoc-in [:metadata :annotations :cert-manager.io/cluster-issuer] letsencrypt-issuer) + (assoc-in [:metadata :annotations :kubernetes.io/ingress.class] ingress-kind) + (cm/replace-all-matching-values-by-new-value "fqdn" fqdn)))) + +(defn generate-statefulset [] + (yaml/from-string (yaml/load-resource "shynet/statefulset.yaml"))) + +(defn generate-service-redis [] + (yaml/from-string (yaml/load-resource "shynet/service-redis.yaml"))) + +(defn generate-service-webserver [] + (yaml/from-string (yaml/load-resource "shynet/service-webserver.yaml"))) diff --git a/src/main/cljs/dda/c4k_shynet/browser.cljs b/src/main/cljs/dda/c4k_shynet/browser.cljs new file mode 100644 index 0000000..1d75b78 --- /dev/null +++ b/src/main/cljs/dda/c4k_shynet/browser.cljs @@ -0,0 +1,67 @@ +(ns dda.c4k-shynet.browser + (:require + [clojure.tools.reader.edn :as edn] + [dda.c4k-shynet.core :as core] + [dda.c4k-shynet.shynet :as shynet] + [dda.c4k-common.browser :as br] + [dda.c4k-common.postgres :as pgc])) + +(defn generate-content + [] + (into [] (concat [(assoc (br/generate-needs-validation) :content + (into [] (concat (br/generate-input-field "fqdn" "Your fqdn:" "shynet.prod.meissa-gmbh.de") + (br/generate-input-field "postgres-data-volume-path" "(Optional) Your postgres-data-volume-path:" "/var/postgres") + (br/generate-input-field "issuer" "(Optional) Your issuer prod/staging:" "") + [(br/generate-br)] + (br/generate-text-area "auth" "Your auth.edn:" "{:postgres-db-user \"shynet\" + :postgres-db-password \"shynet-db-password\" + :django-secret-key \"djangosecretkey\"}" + "5") + [(br/generate-br)] + (br/generate-button "generate-button" "Generate c4k yaml"))))] + (br/generate-output "c4k-shynet-output" "Your c4k deployment.yaml:" "25")))) + +(defn generate-content-div + [] + {:type :element + :tag :div + :content + (generate-content)}) + +(defn config-from-document [] + (let [postgres-data-volume-path (br/get-content-from-element "postgres-data-volume-path" :optional true) + issuer (br/get-content-from-element "issuer" :optional true :deserializer keyword)] + (merge + {:fqdn (br/get-content-from-element "fqdn")} + (when (some? postgres-data-volume-path) + {:postgres-data-volume-path postgres-data-volume-path}) + (when (some? issuer) + {:issuer issuer}) + ))) + +(defn validate-all! [] + (br/validate! "fqdn" ::shynet/fqdn) + (br/validate! "postgres-data-volume-path" ::pgc/postgres-data-volume-path :optional true) + (br/validate! "issuer" ::shynet/issuer :optional true :deserializer keyword) + (br/validate! "auth" core/auth? :deserializer edn/read-string) + (br/set-validated!)) + +(defn add-validate-listener [name] + (-> (br/get-element-by-id name) + (.addEventListener "blur" #(do (validate-all!))))) + + +(defn init [] + (br/append-hickory (generate-content-div)) + (-> js/document + (.getElementById "generate-button") + (.addEventListener "click" + #(do (validate-all!) + (-> (core/generate + (config-from-document) + (br/get-content-from-element "auth" :deserializer edn/read-string)) + (br/set-output!))))) + (add-validate-listener "fqdn") + (add-validate-listener "postgres-data-volume-path") + (add-validate-listener "issuer") + (add-validate-listener "auth")) \ No newline at end of file diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 0000000..8985f2b --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,50 @@ + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + INFO + + + + + logs/pallet.log + + logs/old/pallet.%d{yyyy-MM-dd}.log + 3 + + + %date %level [%thread] %logger{10} %msg%n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/shynet/certificate.yaml b/src/main/resources/shynet/certificate.yaml new file mode 100644 index 0000000..630e7f9 --- /dev/null +++ b/src/main/resources/shynet/certificate.yaml @@ -0,0 +1,13 @@ +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: shynet-cert + namespace: default +spec: + secretName: shynet-secret + commonName: fqdn + dnsNames: + - fqdn + issuerRef: + name: letsencrypt-staging-issuer + kind: ClusterIssuer \ No newline at end of file diff --git a/src/main/resources/shynet/deployments.yaml b/src/main/resources/shynet/deployments.yaml new file mode 100644 index 0000000..f299ab1 --- /dev/null +++ b/src/main/resources/shynet/deployments.yaml @@ -0,0 +1,27 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: shynet-application + namespace: default + labels: + app: shynet-application +spec: + selector: + matchLabels: + app: shynet-application + strategy: + type: Recreate + replicas: 1 + template: + metadata: + labels: + app: shynet-application + spec: + containers: + - name: shynet-application + image: milesmcc/shynet:v0.12.0 + imagePullPolicy: IfNotPresent + command: ["./celeryworker.sh"] + envFrom: + - secretRef: + name: shynet-settings diff --git a/src/main/resources/shynet/ingress.yaml b/src/main/resources/shynet/ingress.yaml new file mode 100644 index 0000000..08fd7ac --- /dev/null +++ b/src/main/resources/shynet/ingress.yaml @@ -0,0 +1,28 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: shynet-webserver-ingress + annotations: + cert-manager.io/cluster-issuer: letsencrypt-staging-issuer + nginx.ingress.kubernetes.io/proxy-body-size: "256m" + nginx.ingress.kubernetes.io/ssl-redirect: "true" + nginx.ingress.kubernetes.io/rewrite-target: / + nginx.ingress.kubernetes.io/proxy-connect-timeout: "300" + nginx.ingress.kubernetes.io/proxy-send-timeout: "300" + nginx.ingress.kubernetes.io/proxy-read-timeout: "300" +spec: + tls: + - hosts: + - fqdn + secretName: shynet-secret + rules: + - host: fqdn + http: + paths: + - backend: + service: + name: shynet-webserver-service + port: + number: 8080 + path: / + pathType: Prefix \ No newline at end of file diff --git a/src/main/resources/shynet/secret.yaml b/src/main/resources/shynet/secret.yaml new file mode 100644 index 0000000..e97554d --- /dev/null +++ b/src/main/resources/shynet/secret.yaml @@ -0,0 +1,32 @@ +apiVersion: v1 +kind: Secret +metadata: + name: shynet-settings +type: Opaque +stringData: + # Django settings + DEBUG: "False" + + # This is hidden behind ingress and (presumably) only works if it has access to + # all shynet pods and services + # If this is not set to '*' there is 404 on every webpage + ALLOWED_HOSTS: "*" # For better security, set this to your deployment's domain. Comma separated. + DJANGO_SECRET_KEY: django-secret-key + ACCOUNT_SIGNUPS_ENABLED: "False" + TIME_ZONE: "America/New_York" + + # Redis configuration (if you use the default Kubernetes config, this will work) + REDIS_CACHE_LOCATION: "redis://shynet-redis.default.svc.cluster.local/0" + CELERY_BROKER_URL: "redis://shynet-redis.default.svc.cluster.local/1" + + # PostgreSQL settings + DB_NAME: "shynet" + DB_USER: postgres-db-user + DB_PASSWORD: postgres-db-password + DB_HOST: "postgresql-service" + + # Email settings + EMAIL_HOST_USER: "" + EMAIL_HOST_PASSWORD: "" + EMAIL_HOST: "" + SERVER_EMAIL: "Shynet " \ No newline at end of file diff --git a/src/main/resources/shynet/service-redis.yaml b/src/main/resources/shynet/service-redis.yaml new file mode 100644 index 0000000..34402fa --- /dev/null +++ b/src/main/resources/shynet/service-redis.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: shynet-redis +spec: + ports: + - port: 6379 + name: redis + clusterIP: None + selector: + app: shynet-redis \ No newline at end of file diff --git a/src/main/resources/shynet/service-webserver.yaml b/src/main/resources/shynet/service-webserver.yaml new file mode 100644 index 0000000..8c6e44a --- /dev/null +++ b/src/main/resources/shynet/service-webserver.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Service +metadata: + name: shynet-webserver-service +spec: + type: ClusterIP + ports: + - port: 8080 + selector: + app: shynet-webserver \ No newline at end of file diff --git a/src/main/resources/shynet/statefulset.yaml b/src/main/resources/shynet/statefulset.yaml new file mode 100644 index 0000000..5970e87 --- /dev/null +++ b/src/main/resources/shynet/statefulset.yaml @@ -0,0 +1,22 @@ +apiVersion: apps/v1 +kind: StatefulSet +metadata: + name: shynet-redis +spec: + selector: + matchLabels: + app: shynet-redis + serviceName: shynet-redis + replicas: 1 + template: + metadata: + labels: + app: shynet-redis + spec: + containers: + - name: shynet-redis + image: redis:6.2.6 + imagePullPolicy: IfNotPresent + ports: + - containerPort: 6379 + name: redis \ No newline at end of file diff --git a/src/test/cljc/dda/c4k_shynet/shynet_test.cljc b/src/test/cljc/dda/c4k_shynet/shynet_test.cljc new file mode 100644 index 0000000..3ef30fc --- /dev/null +++ b/src/test/cljc/dda/c4k_shynet/shynet_test.cljc @@ -0,0 +1,107 @@ +(ns dda.c4k-shynet.shynet-test + (:require + #?(:clj [clojure.test :refer [deftest is are testing run-tests]] + :cljs [cljs.test :refer-macros [deftest is are testing run-tests]]) + [dda.c4k-shynet.shynet :as cut])) + + +(deftest should-generate-webserver-deployment + (is (= {:apiVersion "apps/v1" + :kind "Deployment" + :metadata + {:name "shynet-webserver" + :namespace "default" + :labels {:app "shynet-webserver"}} + :spec + {:selector {:matchLabels {:app "shynet-webserver"}} + :strategy {:type "Recreate"} + :replicas 1 + :template + {:metadata {:labels {:app "shynet-webserver"}} + :spec + {:containers + [{:name "shynet-webserver" + :image "milesmcc/shynet:v0.12.0" + :imagePullPolicy "IfNotPresent" + :envFrom [{:secretRef {:name "shynet-settings"}}]}]}}}} + (cut/generate-webserver-deployment)))) + +(deftest should-generate-celeryworker-deployment + (is (= {:apiVersion "apps/v1" + :kind "Deployment" + :metadata + {:name "shynet-celeryworker" + :namespace "default" + :labels {:app "shynet-celeryworker"}} + :spec + {:selector {:matchLabels {:app "shynet-celeryworker"}} + :strategy {:type "Recreate"} + :replicas 1 + :template + {:metadata {:labels {:app "shynet-celeryworker"}} + :spec + {:containers + [{:name "shynet-celeryworker" + :image "milesmcc/shynet:v0.12.0" + :imagePullPolicy "IfNotPresent" + :command ["./celeryworker.sh"] + :envFrom [{:secretRef {:name "shynet-settings"}}]}]}}}} + (cut/generate-celeryworker-deployment)))) + +(deftest should-generate-certificate + (is (= {:apiVersion "cert-manager.io/v1" + :kind "Certificate" + :metadata {:name "shynet-cert", :namespace "default"} + :spec + {:secretName "shynet-secret" + :commonName "test.com" + :dnsNames ["test.com"] + :issuerRef {:name "letsencrypt-staging-issuer", :kind "ClusterIssuer"}}} + (cut/generate-certificate {:fqdn "test.com" :issuer :staging})))) + +(deftest should-generate-ingress + (is (= {:apiVersion "networking.k8s.io/v1" + :kind "Ingress" + :metadata + {:name "shynet-webserver-ingress" + :annotations + {:cert-manager.io/cluster-issuer "letsencrypt-staging-issuer" + :nginx.ingress.kubernetes.io/proxy-body-size "256m" + :nginx.ingress.kubernetes.io/ssl-redirect "true" + :nginx.ingress.kubernetes.io/rewrite-target "/" + :nginx.ingress.kubernetes.io/proxy-connect-timeout "300" + :nginx.ingress.kubernetes.io/proxy-send-timeout "300" + :nginx.ingress.kubernetes.io/proxy-read-timeout "300"}} + :spec + {:tls [{:hosts ["test.com"], :secretName "shynet-secret"}] + :rules + [{:host "test.com" + :http {:paths [{:backend {:service + {:name "shynet-webserver-service" :port {:number 8080}}}, :path "/", :pathType "Prefix"}]}}]}} + (cut/generate-ingress {:fqdn "test.com" :issuer :staging})))) + +(deftest should-generate-secret + (is (= {:apiVersion "v1" + :kind "Secret" + :metadata {:name "shynet-settings"} + :type "Opaque" + :stringData + {:DEBUG "False" + :ALLOWED_HOSTS "*" + :DJANGO_SECRET_KEY "django-pw" + :ACCOUNT_SIGNUPS_ENABLED "False" + :TIME_ZONE "America/New_York" + :REDIS_CACHE_LOCATION + "redis://shynet-redis.default.svc.cluster.local/0" + :CELERY_BROKER_URL + "redis://shynet-redis.default.svc.cluster.local/1" + :DB_NAME "shynet" + :DB_USER "postgres-user" + :DB_PASSWORD "postgres-pw" + :DB_HOST "postgresql-service" + :EMAIL_HOST_USER "" + :EMAIL_HOST_PASSWORD "" + :EMAIL_HOST "" + :SERVER_EMAIL "Shynet "}} + (cut/generate-secret {:fqdn "test.com" :django-secret-key "django-pw" + :postgres-db-user "postgres-user" :postgres-db-password "postgres-pw"})))) \ No newline at end of file diff --git a/valid-auth.edn b/valid-auth.edn new file mode 100644 index 0000000..0872d1b --- /dev/null +++ b/valid-auth.edn @@ -0,0 +1,3 @@ +{:django-secret-key "django" + :postgres-db-user "shynet" + :postgres-db-password "shynet-db-password"} diff --git a/valid-config.edn b/valid-config.edn new file mode 100644 index 0000000..98711d3 --- /dev/null +++ b/valid-config.edn @@ -0,0 +1,3 @@ +{:fqdn "statistics.test.meissa-gmbh.de" + :issuer :staging + :postgres-data-volume-path "/var/postgres"}