Skip to content

Commit db3acbc

Browse files
authored
Merge pull request #194 from ContainerSolutions/docs-update
Improve website
2 parents 6b1865d + f59c289 commit db3acbc

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

docs/_includes/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
</button>
1111
<div class="collapse navbar-collapse main-menu" id="main-menu">
1212
<ul class="navbar-nav">
13-
<li><a href="{{ site.baseurl }}/"">Home</a></li>
13+
<li><a href="{{ site.baseurl }}/">Home</a></li>
1414
</li>
15-
<li><a href="mailto:[email protected]">Contact Us</a></li>
15+
<li><a href="https://discord.gg/DacEhAy">Contact Us</a></li>
1616
</ul>
1717
</div>
1818
</div>

docs/_includes/links.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<link rel="icon" href="{{ site.baseurl }}/assets/images/Webp.net-resizeimage.png"/>
2-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic|Exo:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Dosis:200,300,regular,500,600,700,800" crossorigin="anonymous">
1+
<link rel="shortcut icon" href="{{ site.baseurl }}/assets/images/favicon.ico" type="image/x-icon">
2+
<link rel="icon" href="{{ site.baseurl }}/assets/images/favicon.ico" type="image/x-icon"><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic|Exo:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic|Dosis:200,300,regular,500,600,700,800" crossorigin="anonymous">
33
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
44
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style.css"/>

docs/assets/images/favicon.ico

1.12 KB
Binary file not shown.

docs/index.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,37 @@ description: Build Kubernetes Operators in Java without hassle
44
layout: homepage
55
---
66

7-
#### Features
7+
Whether you want to build applications that operate themselves or provision infrastructure from Java code, Kubernetes
8+
Operators are the way to go. This SDK will make it easy for Java developers to embrace this new way of automation.
9+
10+
# Features
811
* Framework for handling Kubernetes API events
912
* Registering Custom Resource watches
1013
* Retry action on failure
1114
* Smart event scheduling (only handle latest event for the same resource)
1215

13-
14-
15-
#### Why build your own Operator?
16+
# Why build your own Operator?
1617
* Infrastructure automation using the power and flexibility of Java. See [blog post](https://blog.container-solutions.com/cloud-native-java-infrastructure-automation-with-kubernetes-operators).
1718
* Provisioning of complex applications - avoiding Helm chart hell
1819
* Integration with Cloud services - e.g. Secret stores
1920
* Safer deployment of applications - only expose cluster to users by Custom Resources
2021

21-
22-
23-
#### Roadmap
22+
# Roadmap
2423
* Testing of the framework and all samples while running on a real cluster.
2524
* Generate a project skeleton
2625
* Generate Java classes from CRD definion (and/or the other way around)
2726
* Integrate with Quarkus (including native image build)
2827
* Integrate with OLM (Operator Lifecycle Manager)
2928

29+
# Contributing
30+
31+
We are a friendly team of Java and Kubernetes enthusiasts and welcome everyone to contribute in any way to the framework!
32+
Get in touch either on GitHub or our [Discord server](https://discord.gg/DacEhAy), we are always happy to chat and help
33+
you find the right issue to get started. We have a [code of conduct](https://github.com/ContainerSolutions/java-operator-sdk/blob/master/CODE_OF_CONDUCT.md)
34+
which we strictly enforce, as well as [issues marked for new joiners](https://github.com/ContainerSolutions/java-operator-sdk/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
35+
36+
We are also supporting [#HacktoberFest](https://hacktoberfest.digitalocean.com/) and have several issues marked as [good
37+
candidates](https://github.com/ContainerSolutions/java-operator-sdk/issues?q=is%3Aissue+is%3Aopen+label%3A%22hacktoberfest%22+) to pick up during the event.
38+
3039
[Maven](https://mvnrepository.com/artifact/com.github.containersolutions/java-operator-sdk){:.button-text}
31-
[GitHub](https://github.com/ContainerSolutions/java-operator-sdk){:.button-text}
40+
[GitHub](https://github.com/ContainerSolutions/java-operator-sdk){:.button-text}

0 commit comments

Comments
 (0)