Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Intial structure of docs #5

Merged
merged 2 commits into from
Mar 24, 2022
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
6 changes: 6 additions & 0 deletions docs/antora.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
name: commons-operator
version: master
title: Stackable Commons Operator
nav:
- modules/ROOT/nav.adoc
6 changes: 6 additions & 0 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* xref:installation.adoc[]
* xref:configuration.adoc[]
* xref:usage.adoc[]
* Concepts
** xref:authenticationclass.adoc[]
** xref:reloader.adoc[]
3 changes: 3 additions & 0 deletions docs/modules/ROOT/pages/authenticationclass.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= `AuthenticationClass`

TODO
4 changes: 4 additions & 0 deletions docs/modules/ROOT/pages/configuration.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= Configuration

== Command Line Parameters
At the moment this operator accepts no command line parameters
3 changes: 3 additions & 0 deletions docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Stackable Commons Operator

This is an operator for Kubernetes that provides and manages common Object of the Stackable Data Platform.
41 changes: 41 additions & 0 deletions docs/modules/ROOT/pages/installation.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
= Installation

There are two ways to run the Stackable Commons Operator:

1. Helm managed Docker container deployment on Kubernetes

2. Build from source


== Helm
Helm allows you to download and deploy Stackable operators on Kubernetes and is by far the easiest installation method. First ensure that you have installed the Stackable Operators Helm repository:

[source,console]
----
$ helm repo add stackable https://repo.stackable.tech/repository/helm-stable/
----

Then install the Stackable Commons Operator

[source,console]
----
$ helm install commons-operator stackable/commons-operator
----

Helm will deploy the operator in Kubernetes and apply the CRDs.

== Building the operator from source

After cloning the commons-operator repor you can use the following command to apply the CRDs:

[source,console]
----
$ cargo run -- crd | kubectl apply -f -
----

Use the following command to run the operator:

[source,console]
----
$ cargo run -- run
----
3 changes: 3 additions & 0 deletions docs/modules/ROOT/pages/reloader.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= `Reloader`

TODO
16 changes: 16 additions & 0 deletions docs/modules/ROOT/pages/usage.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
= Usage

The commons-operator is used for multiple purposes:


[%autowidth.stretch]
|===
|Component|Purpose

|xref:authenticationclass.adoc[]
|An CRD describing an generic authentication method like LDAP or Kerberos.
Multiple operators use this CRD as a way to express the autentication of the product.

|xref:reloader.adoc[]
|An operator that watches `StatefulSets` and restarts them if mounted `ConfigMap` or `Secret` changes
|===