You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Platform Engineer* - they all have one in common:
18
18
The majority of tech people are not motivated to take up this work and they are hard to recruit.
19
19
20
20
One of the main reasons for this is the abstraction and poor execution of many automation tools. They come with their own configuration (`YAML`_ syntax) specification or limit the user to one specific programming language. Testing is nearly impossible because most automation tools lack the ability to mock services and subsystems. Even tiny things, for example parsing a JSON file, are sometimes really painful because external, outdated libraries were used and not included in the standard framework.
@@ -26,11 +26,11 @@ How does it work?
26
26
27
27
.. begin-architecture
28
28
29
-
Gaia is based on `HashiCorp's go-plugin`_. It's a plugin system that uses `gRPC`_ to communicate over `HTTP/2`_. HashiCorp developed this tool initially for `Packer`_ but it's now heavily used by `Terraform`_, `Nomad`_, and `Vault`_ too.
29
+
Gaia is based on `HashiCorp's go-plugin`_. It's a plugin system that uses `gRPC`_ to communicate over `HTTP/2`_. HashiCorp developed this tool initially for `Packer`_ but it's now heavily used by `Terraform`_, `Nomad`_, and `Vault`_ too.
30
30
31
31
Plugins, which we named pipelines, are applications which can be written in any programming language as long as `gRPC`_ is supported. All functions, which we call Jobs, are exposed to Gaia and can form up a dependency graph which describes the order of execution.
32
32
33
-
Pipelines can be compiled locally or simply over the build system. Gaia clones the git repository and automatically builds the included pipeline. If a change (`git push`_) happened, Gaia will automatically rebuild the pipeline for you.
33
+
Pipelines can be compiled locally or simply over the build system. Gaia clones the git repository and automatically builds the included pipeline. If a change (`git push`_) happened, Gaia will automatically rebuild the pipeline for you.
34
34
35
35
After a pipeline has been started, all log output are returned back to Gaia and displayed in a detailed overview with their final result status.
36
36
@@ -107,7 +107,7 @@ Here is an example:
107
107
jobs := sdk.Jobs{
108
108
sdk.Job{
109
109
Handler: DoSomethingAwesome,
110
-
Title: "DoSomethingAwesome",
110
+
Title: "DoSomethingAwesome",
111
111
Description: "This job does something awesome.",
112
112
113
113
// Increase the priority if this job should be executed later than other jobs.
@@ -123,7 +123,7 @@ Here is an example:
123
123
124
124
Like you can see, pipelines are defined by jobs. Usually, a function represents a job. You can define as many jobs in your pipeline as you want.
125
125
126
-
At the end, we define a jobs array that populates all jobs to gaia. We also add some information like a title, a description and the priority.
126
+
At the end, we define a jobs array that populates all jobs to gaia. We also add some information like a title, a description and the priority.
127
127
128
128
The priority is really important and should always be used. If, for example, job A has a higher priority (decimal number) as job B, job A will be executed **after** job B. Priority defines therefore the order of execution. If two or more jobs have the same priority, those will be executed simultanously. You can compare it with the `Unix nice level`_.
129
129
@@ -132,6 +132,11 @@ Gaia will compile it and add it to it's store for later execution.
132
132
133
133
Please find a bit more sophisticated example in our `go-example repo`_.
134
134
135
+
Security
136
+
--------
137
+
138
+
See the Documentation located here: |security-docs|.
139
+
135
140
Documentation and more
136
141
======================
137
142
@@ -144,11 +149,11 @@ What problem solves **Gaia**?
144
149
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
145
150
Literally every tool which were designed for automation, continuous integration (CI), and continuous deployment (CD) like Spinnaker, Jenkins, Gitlab CI/CD, TravisCI, CircleCI, Codeship, Bamboo and many more, introduced their own configuration format. Some of them don't even support *configuration/automation as code*. This works well for simple tasks like running a ``go install`` or ``mvn clean install`` but in the real world there is more to do.
146
151
147
-
Gaia is the first platform which does not limit the user and provides full support for almost all common programming languages without losing the features offered by todays CI/CD tools.
152
+
Gaia is the first platform which does not limit the user and provides full support for almost all common programming languages without losing the features offered by todays CI/CD tools.
148
153
149
154
What is a **pipeline**?
150
155
~~~~~~~~~~~~~~~~~~~~~~~
151
-
A pipeline is a real application with at least one function (we call it Job). Every programming language can be used as long as gRPC is supported. We offer SDKs (currently only Go but others are already in development) to support the development.
156
+
A pipeline is a real application with at least one function (we call it Job). Every programming language can be used as long as gRPC is supported. We offer SDKs (currently only Go but others are already in development) to support the development.
152
157
153
158
What is a **job**?
154
159
~~~~~~~~~~~~~~~~~~
@@ -169,12 +174,12 @@ Gaia is currently in alpha version available. We extremely recommend to not use
169
174
170
175
One of the main issues currently is the lack of unit- and integration tests. This is on our to-do list and we are working on this topic with high priority.
171
176
172
-
It is planned that other programming languages should be supported in the next few month. It is up to the community which languages will be supported next.
177
+
It is planned that other programming languages should be supported in the next few month. It is up to the community which languages will be supported next.
173
178
174
179
Contributing
175
180
============
176
181
177
-
Gaia can only evolve and become a great product with the help of contributors. If you like to contribute, please have a look at our `issues section`_. We do our best to mark issues for new contributors with the label *good first issue*.
182
+
Gaia can only evolve and become a great product with the help of contributors. If you like to contribute, please have a look at our `issues section`_. We do our best to mark issues for new contributors with the label *good first issue*.
178
183
179
184
If you think you found a good first issue, please consider this list as a short guide:
180
185
@@ -225,7 +230,7 @@ If you have any questions feel free to contact us on `gitter`_.
Gaia, when first started will create a signed certificate in a location
6
+
defined by the user under `gaia.Cfg.CAPath` which can be set by the runtime flag
7
+
`-capath=/etc/gaia/cert` for example. It is recommended that the certificate
8
+
is kept separate from the main Gaia work folder and in a secure location.
9
+
10
+
This certificate is used in two places. First, in the communication between the
11
+
admin portal and the back-end. Second, by the Vault.
12
+
13
+
## The Vault
14
+
15
+
The Vault is a secure storage for secret values like, password, tokens and other
16
+
things that the user would like to pass securly into a Pipeline. The Vault is
17
+
encrypted using AES cipher technology where the key is derived from the above
18
+
certificate and the IV is included in the encrypted content.
19
+
20
+
The Vault file's location can be configured through the runtime variable called
21
+
`VaultPath`. For maximum security it is recommended that this file is kept on an
22
+
encrypted, mounted drive. In case there is a breach the drive can be quickly removed
23
+
and the file deleted, thus rotating all of the secrets at once, under Gaia.
24
+
25
+
To create an encrypted MacOSX image follow this guide: [Encrypted Secure Disk Image on Mac](https://www.howtogeek.com/183826/how-to-create-an-encrypted-file-container-disk-image-on-a-mac/).
26
+
27
+
To create an encrypted disk on Linux follow this guide: [Encrypted Disk Image on Linux](http://freesoftwaremagazine.com/articles/create_encrypted_disk_image_gnulinux/).
28
+
29
+
The admin will never see the secure values, not when editing, not when adding and not
30
+
when looking at the list of secrets. Only the Key names are displayed at all times.
31
+
32
+
It's possible to Add, Delete, Update and List secrets in the system.
0 commit comments