fab-city-software-kit/README.md
2022-11-30 12:14:39 +01:00

4.7 KiB
Raw Blame History

Interfacer

Interfacer SWKit for Kubernetes

Website | Blog

License Pipeline Matrix

This Repo is designed to be a lightweight way to configure the Interfacer SWKit applications. Interfacer SWKit is a bundle of Applications to enabling a data-based circular economy via global collaboration and local production.

Table of Contents

📖 Documentation

🚀 Getting Started

Kubernetes (K8s), is an open-source system for automating deployment, scaling, and management of containerized applications. You can run a FabCityOS Core instance inside your Kubernetes cluster, either if you want to expose it to the outside world or just let some other applications use it inside your cluster and take advantage of the instant and powerful search engine.

First of all, you will need a Kubernetes cluster up and running. If you are not familiar with how Kuberentes works or need some help with this step, please check the Kubernetes documentation.

Repository structure

├── base                           # kustomize global objects folder
│   ├── kustomization.yaml         # kustomize global application config
│   └── ...                        # kustomize global cluster objects
├── apps                           # kustomize global applications folder
│   ├── gitea                      # kustomize global application folder
│   │   ├── kustomization.yaml     # kustomize global application definition
│   │   ├── charts                 # helm global chart config folder
│   │   └── ...                    # kustomize global application objects
│   └── ...                        # kustomize global applications objects
├── overlays                       # kustomize environment overrides
│   ├── dev                        # kustomize environment specific
│   │   ├── kustomization.yaml     # kustomize environment definition
│   │   └── cert-manager           # kustomize applications folder
│   │       ├── kustomization.yaml # kustomize application config
│   │       └── ...                # kustomize application objects
│   └── ...                        # kustomize environment folder
├── .envrc                         # direnv support file
└── flake.nix                      # nix flake for local runtime dependency

Install kubectl

kubectl is the most commonly used CLI to manage a Kubernetes cluster. The installation instructions are available here.

Install helm

helm is a Command Line Interface which will automate chart management and installation on your Kubernetes cluster. To install Helm, follow the Helm installation instructions.

Deploy the SWKit

git clone https://gitlab.fabcity.hamburg/software/interfacer-swkit.git
cd interfacer-swkit
kubectl kustomize --enable-helm overlays/dev | kubectl apply -f -

⚙️ Development Workflow and Contributing

Any new contribution is more than welcome in this project!

If you want to know more about the development workflow or want to contribute, please visit our contributing guidelines for detailed instructions!