-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from upmc-enterprises/crd
Implement CustomResourceDefinition and remove TPR
- Loading branch information
Showing
673 changed files
with
90,874 additions
and
63,765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ import ( | |
) | ||
|
||
var ( | ||
appVersion = "0.0.7" | ||
appVersion = "0.0.8" | ||
|
||
printVersion bool | ||
baseImage string | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: enterprises.upmc.com/v1 | ||
kind: ElasticsearchCluster | ||
metadata: | ||
name: example-es-cluster | ||
spec: | ||
client-node-replicas: 3 | ||
master-node-replicas: 2 | ||
data-node-replicas: 3 | ||
network-host: 0.0.0.0 | ||
zones: [] | ||
data-volume-size: 10Gi | ||
java-options: "-Xms1024m -Xmx1024m" | ||
snapshot: | ||
scheduler-enabled: false | ||
bucket-name: elasticsnapshots99 | ||
cron-schedule: "@every 2m" | ||
storage: | ||
storage-class: default | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 500m | ||
limits: | ||
memory: 1024Mi | ||
cpu: '1' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: enterprises.upmc.com/v1 | ||
kind: ElasticsearchCluster | ||
metadata: | ||
name: example-es-cluster | ||
spec: | ||
elastic-search-image: upmcenterprises/docker-elasticsearch-kubernetes:5.3.1 | ||
client-node-replicas: 1 | ||
master-node-replicas: 1 | ||
data-node-replicas: 3 | ||
network-host: 0.0.0.0 | ||
zones: [] | ||
data-volume-size: 10Gi | ||
java-options: "-Xms256m -Xmx256m" | ||
snapshot: | ||
scheduler-enabled: false | ||
bucket-name: elasticsnapshots99 | ||
cron-schedule: "@every 2m" | ||
storage: | ||
type: standard | ||
storage-class-version: volume.alpha.kubernetes.io/storage-class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: enterprises.upmc.com/v1 | ||
kind: ElasticSearch-Clusters | ||
metadata: | ||
name: example-es-cluster | ||
spec: | ||
kibana: | ||
image: upmcenterprises/kibana:5.3.1 | ||
client-node-replicas: 3 | ||
master-node-replicas: 2 | ||
data-node-replicas: 3 | ||
network-host: 0.0.0.0 | ||
zones: [] | ||
data-volume-size: 10Gi | ||
java-options: "-Xms256m -Xmx256m" | ||
snapshot: | ||
scheduler-enabled: false | ||
bucket-name: elasticsnapshots99 | ||
cron-schedule: "@every 2m" | ||
storage: | ||
storage-class: rook-block | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 500m | ||
limits: | ||
memory: 1024Mi | ||
cpu: '1' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: enterprises.upmc.com/v1 | ||
kind: ElasticsearchCluster | ||
metadata: | ||
name: example-es-cluster | ||
spec: | ||
kibana: | ||
image: upmcenterprises/kibana:5.3.1 | ||
client-node-replicas: 3 | ||
master-node-replicas: 2 | ||
data-node-replicas: 3 | ||
network-host: 0.0.0.0 | ||
zones: | ||
- us-east-1c | ||
- us-east-1d | ||
- us-east-1e | ||
data-volume-size: 10Gi | ||
java-options: "-Xms256m -Xmx256m" | ||
snapshot: | ||
scheduler-enabled: false | ||
bucket-name: elasticsnapshots99 | ||
cron-schedule: "@every 2m" | ||
storage: | ||
type: gp2 | ||
storage-class-provisioner: kubernetes.io/aws-ebs | ||
resources: | ||
requests: | ||
memory: 512Mi | ||
cpu: 500m | ||
limits: | ||
memory: 1024Mi | ||
cpu: '1' |
Oops, something went wrong.