hexsha
stringlengths
40
40
size
int64
24
1.05M
ext
stringclasses
2 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
5
269
max_stars_repo_name
stringlengths
7
107
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequence
max_stars_count
int64
1
84.9k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
5
269
max_issues_repo_name
stringlengths
7
107
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequence
max_issues_count
int64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
5
269
max_forks_repo_name
stringlengths
7
107
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequence
max_forks_count
int64
1
55.9k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
24
1.05M
avg_line_length
float64
1
304k
max_line_length
int64
14
1.03M
alphanum_fraction
float64
0
1
f716238969edc5e9c1a08563aeec733673890b26
1,497
yaml
YAML
docker/kyuubi-service.yaml
yanghua/incubator-kyuubi
b382ed0dd87e9e19cab40f3e6b596c042ecdc066
[ "Apache-2.0" ]
411
2021-07-12T17:57:49.000Z
2022-03-31T07:05:32.000Z
docker/kyuubi-service.yaml
yanghua/incubator-kyuubi
b382ed0dd87e9e19cab40f3e6b596c042ecdc066
[ "Apache-2.0" ]
1,340
2021-07-12T15:22:33.000Z
2022-03-31T15:53:46.000Z
docker/kyuubi-service.yaml
yanghua/incubator-kyuubi
b382ed0dd87e9e19cab40f3e6b596c042ecdc066
[ "Apache-2.0" ]
168
2021-07-12T16:31:17.000Z
2022-03-31T07:05:52.000Z
# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Usage: # Start: # kubectl apply -f https://raw.githubusercontent.com/apache/incubator-kyuubi/master/docker/kyuubi-service.yaml # Connect: # ${SPARK_HOME}/bin/beeline -u 'jdbc:hive2://${any_hostname_of_k8s_nodes}:30009' apiVersion: v1 kind: Service metadata: name: kyuubi-example-service spec: ports: # The default port limit is 30000-32767 # to change: # vim kube-apiserver.yaml (usually under path: /etc/kubernetes/manifests/) # add or change line 'service-node-port-range=1-32767' under kube-apiserver - nodePort: 30009 # same of containerPort in pod yaml port: 10009 protocol: TCP type: NodePort selector: # same of pod label app: kyuubi-server
36.512195
112
0.738143
f71623eb53ea4036e104f124eea57eb784a3817c
1,201
yaml
YAML
kubernetes-controllers/paymentservice-deployment.yaml
otus-kuber-2020-07/vizh_platform
94690f4172e9ee95bf84ad0256d1c705b57d72cd
[ "MIT" ]
null
null
null
kubernetes-controllers/paymentservice-deployment.yaml
otus-kuber-2020-07/vizh_platform
94690f4172e9ee95bf84ad0256d1c705b57d72cd
[ "MIT" ]
null
null
null
kubernetes-controllers/paymentservice-deployment.yaml
otus-kuber-2020-07/vizh_platform
94690f4172e9ee95bf84ad0256d1c705b57d72cd
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: paymentservice labels: app: paymentservice spec: replicas: 3 strategy: type: RollingUpdate # Аналог Blue-Green # rollingUpdate: # maxSurge: 3 # maxUnavailable: 0 # Аналог Reverse Rolling Update # rollingUpdate: # maxSurge: 0 # maxUnavailable: 1 selector: matchLabels: app: paymentservice template: metadata: labels: app: paymentservice spec: containers: - name: server image: opcode/hipster-payment:v.0.0.2 env: - name: PRODUCT_CATALOG_SERVICE_ADDR value: "productcatalogservice:3550" - name: CURRENCY_SERVICE_ADDR value: "currencyservice:7000" - name: CART_SERVICE_ADDR value: "cartservice:7070" - name: RECOMMENDATION_SERVICE_ADDR value: "recommendationservice:8080" - name: CHECKOUT_SERVICE_ADDR value: "checkoutservice:5050" - name: SHIPPING_SERVICE_ADDR value: "shippingservice:50051" - name: AD_SERVICE_ADDR value: "adservice:9555"
25.553191
49
0.592839
f7162d04fac010295d7f874083d87c5943c2536f
819
yaml
YAML
kubernetes/cowweb.yaml
takeyat/cowweb-for-wercker-demo
b01ba0d4bb334707b79da69fcb4a030dd4c8b9ad
[ "MIT" ]
null
null
null
kubernetes/cowweb.yaml
takeyat/cowweb-for-wercker-demo
b01ba0d4bb334707b79da69fcb4a030dd4c8b9ad
[ "MIT" ]
null
null
null
kubernetes/cowweb.yaml
takeyat/cowweb-for-wercker-demo
b01ba0d4bb334707b79da69fcb4a030dd4c8b9ad
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: cowweb spec: replicas: 2 selector: matchLabels: app: cowweb strategy: type: Recreate template: metadata: labels: app: cowweb version: v1.0 spec: containers: - name: cowweb image: iad.ocir.io/gse00014640/handson-002/cowweb:v1.0 ports: - name: api containerPort: 8080 readinessProbe: httpGet: path: /cowsay/ping port: api initialDelaySeconds: 5 periodSeconds: 10 livenessProbe: httpGet: path: /cowsay/ping port: api initialDelaySeconds: 15 periodSeconds: 20 imagePullPolicy: Always imagePullSecrets: - name: cowweb-secret
21
62
0.554335
f716478f09fc1922d84c9abb390b4fb712aa7603
910
yaml
YAML
jenkins-operator/operator.yaml
tveal/jenkins-k8s
1007cda31c6a7f2e58c56f9fb91657a8c4905336
[ "Apache-2.0" ]
null
null
null
jenkins-operator/operator.yaml
tveal/jenkins-k8s
1007cda31c6a7f2e58c56f9fb91657a8c4905336
[ "Apache-2.0" ]
null
null
null
jenkins-operator/operator.yaml
tveal/jenkins-k8s
1007cda31c6a7f2e58c56f9fb91657a8c4905336
[ "Apache-2.0" ]
null
null
null
--- apiVersion: apps/v1 kind: Deployment metadata: name: jenkins-operator spec: replicas: 1 selector: matchLabels: name: jenkins-operator template: metadata: labels: name: jenkins-operator spec: serviceAccountName: jenkins-operator containers: - name: jenkins-operator image: virtuslab/jenkins-operator:v0.0.9 ports: - containerPort: 60000 name: metrics command: - jenkins-operator args: [] imagePullPolicy: IfNotPresent env: - name: WATCH_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: OPERATOR_NAME value: "jenkins-operator"
23.947368
50
0.535165
f7164bb97320a814b1055937c1edec11e72b2292
1,361
yml
YAML
experiments/exp01/trial12/libri-sim.yml
drausin/libri-experiments
f3e6f23e33bc49f8dd0ac6292f63305035015991
[ "Apache-2.0" ]
null
null
null
experiments/exp01/trial12/libri-sim.yml
drausin/libri-experiments
f3e6f23e33bc49f8dd0ac6292f63305035015991
[ "Apache-2.0" ]
null
null
null
experiments/exp01/trial12/libri-sim.yml
drausin/libri-experiments
f3e6f23e33bc49f8dd0ac6292f63305035015991
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: libri-experimenter spec: restartPolicy: Never volumes: - name: data emptyDir: {} containers: - name: libri-experimenter image: daedalus2718/libri-exp:snapshot-949fb64 args: [ "run", "--librarians", "librarians-0.libri.default.svc.cluster.local:20100,librarians-1.libri.default.svc.cluster.local:20100,librarians-2.libri.default.svc.cluster.local:20100,librarians-3.libri.default.svc.cluster.local:20100,librarians-4.libri.default.svc.cluster.local:20100,librarians-5.libri.default.svc.cluster.local:20100,librarians-6.libri.default.svc.cluster.local:20100,librarians-7.libri.default.svc.cluster.local:20100", "--duration", "30m", "--numAuthors", "100", "--docsPerDay", "2560", "--contentSizeKBGammaShape", "1.5", "--contentSizeKBGammaRate", "0.00588", "--sharesPerUpload", "2", "--nUploaders", "64", "--nDownloaders", "192", "--profile", ] env: - name: GODEBUG # ensure we use the pure Go (rather than CGO) DNS value: netdns=go # resolver (see https://golang.org/src/net/net.go) volumeMounts: - name: data mountPath: /data resources: limits: memory: 2G cpu: 400m
37.805556
446
0.608376
f7166ab7950d3d38fc7bbb585bb40749814c5704
852
yaml
YAML
documentation/modules/ROOT/examples/todo-yaml/postgres-create-table.yaml
laebshade/argocd-tutorial
1c644521c1bf7feaab9f93932143ef8273758677
[ "Apache-2.0" ]
18
2021-05-09T13:16:13.000Z
2022-03-26T20:03:24.000Z
documentation/modules/ROOT/examples/todo-yaml/postgres-create-table.yaml
laebshade/argocd-tutorial
1c644521c1bf7feaab9f93932143ef8273758677
[ "Apache-2.0" ]
1
2022-03-18T09:32:05.000Z
2022-03-18T09:32:05.000Z
documentation/modules/ROOT/examples/todo-yaml/postgres-create-table.yaml
laebshade/argocd-tutorial
1c644521c1bf7feaab9f93932143ef8273758677
[ "Apache-2.0" ]
10
2021-06-14T14:38:16.000Z
2022-03-07T06:54:38.000Z
apiVersion: batch/v1 kind: Job metadata: name: todo-table namespace: todo annotations: argocd.argoproj.io/sync-wave: "1" spec: ttlSecondsAfterFinished: 100 template: spec: containers: - name: postgresql-client image: postgres:12 imagePullPolicy: Always env: - name: PGPASSWORD value: admin command: ["psql"] args: [ "--host=postgresql", "--username=admin", "--no-password", "--dbname=todo", "--command=create table Todo (id bigint not null,completed boolean not null,ordering integer,title varchar(255),url varchar(255),primary key (id));create sequence hibernate_sequence start with 1 increment by 1;", ] restartPolicy: Never backoffLimit: 1
29.37931
226
0.576291
f71696b2e7f77f6eda01d56109362c74206fc394
5,085
yaml
YAML
k8s/europe-west4/gen/tf-r2.4.0-keras-api-custom-layers-v2-32.yaml
michaelbanfield/ml-testing-accelerators
c88001b4b2a205d5fa193cfbe5af6728dd602ee1
[ "Apache-2.0" ]
null
null
null
k8s/europe-west4/gen/tf-r2.4.0-keras-api-custom-layers-v2-32.yaml
michaelbanfield/ml-testing-accelerators
c88001b4b2a205d5fa193cfbe5af6728dd602ee1
[ "Apache-2.0" ]
null
null
null
k8s/europe-west4/gen/tf-r2.4.0-keras-api-custom-layers-v2-32.yaml
michaelbanfield/ml-testing-accelerators
c88001b4b2a205d5fa193cfbe5af6728dd602ee1
[ "Apache-2.0" ]
null
null
null
# Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. "apiVersion": "batch/v1beta1" "kind": "CronJob" "metadata": "name": "tf-r2.4.0-keras-api-custom-layers-v2-32" "namespace": "automated" "spec": "concurrencyPolicy": "Forbid" "jobTemplate": "spec": "activeDeadlineSeconds": 7200 "backoffLimit": 1 "template": "metadata": "annotations": "tf-version.cloud-tpus.google.com": "2.4.0" "spec": "containers": - "env": - "name": "POD_NAME" "valueFrom": "fieldRef": "fieldPath": "metadata.name" - "name": "POD_NAMESPACE" "valueFrom": "fieldRef": "fieldPath": "metadata.namespace" "image": "gcr.io/xl-ml-test/health-monitor:stable" "imagePullPolicy": "Always" "name": "monitor" - "args": - "/bin/bash" - "-c" - | set -u set -e set -x export PATH=$PATH:/root/google-cloud-sdk/bin gcloud source repos clone tf2-api-tests --project=xl-ml-test cd tf2-api-tests pip3 install behave behave -e ipynb_checkpoints --tags=-fails --tags=-failspod -i custom_layers_model "env": - "name": "POD_NAME" "valueFrom": "fieldRef": "fieldPath": "metadata.name" - "name": "POD_UID" "valueFrom": "fieldRef": "fieldPath": "metadata.uid" - "name": "POD_NAMESPACE" "valueFrom": "fieldRef": "fieldPath": "metadata.namespace" - "name": "JOB_NAME" "valueFrom": "fieldRef": "fieldPath": "metadata.labels['job-name']" - "name": "MODEL_DIR" "value": "$(OUTPUT_BUCKET)/tf-r2.4.0/keras-api/custom-layers/v2-32/$(JOB_NAME)" "envFrom": - "configMapRef": "name": "gcs-buckets" "image": "gcr.io/xl-ml-test/tensorflow:r2.4.0" "imagePullPolicy": "Always" "name": "train" "resources": "limits": "cloud-tpus.google.com/preemptible-v2": 32 "requests": "cpu": 2 "memory": "20G" "volumeMounts": - "mountPath": "/dev/shm" "name": "dshm" "readOnly": false "initContainers": - "env": - "name": "POD_NAME" "valueFrom": "fieldRef": "fieldPath": "metadata.name" - "name": "POD_UID" "valueFrom": "fieldRef": "fieldPath": "metadata.uid" - "name": "POD_NAMESPACE" "valueFrom": "fieldRef": "fieldPath": "metadata.namespace" - "name": "JOB_NAME" "valueFrom": "fieldRef": "fieldPath": "metadata.labels['job-name']" - "name": "MODEL_DIR" "value": "$(OUTPUT_BUCKET)/tf-r2.4.0/keras-api/custom-layers/v2-32/$(JOB_NAME)" - "name": "METRIC_CONFIG" "value": | { "metric_collection_config": { "default_aggregation_strategies": [ "final" ], "metric_to_aggregation_strategies": { "examples_per_second": [ "average" ] }, "use_run_name_prefix": true, "write_to_bigquery": true }, "regression_test_config": { "alert_for_failed_jobs": true }, "test_name": "tf-r2.4.0-keras-api-custom-layers-v2-32" } "envFrom": - "configMapRef": "name": "gcs-buckets" "image": "gcr.io/xl-ml-test/publisher:stable" "imagePullPolicy": "Always" "name": "publisher" "nodeSelector": "tpu-available": "true" "restartPolicy": "Never" "volumes": - "emptyDir": "medium": "Memory" "name": "dshm" "schedule": "0 10 * * *" "successfulJobsHistoryLimit": 1
34.591837
95
0.463913
f7174a3df9e18a8fbdac63ce19c404a4bd97597e
573
yaml
YAML
docs/kubernetes/deploy/demo/deployment.yaml
Nilegfx/skipper
5801bbb44c13d3018490f4cfd1d9e3a50d897913
[ "Apache-2.0" ]
2,725
2015-08-20T03:06:11.000Z
2022-03-31T20:00:20.000Z
docs/kubernetes/deploy/demo/deployment.yaml
Nilegfx/skipper
5801bbb44c13d3018490f4cfd1d9e3a50d897913
[ "Apache-2.0" ]
1,889
2015-09-07T20:30:49.000Z
2022-03-31T17:44:34.000Z
docs/kubernetes/deploy/demo/deployment.yaml
Nilegfx/skipper
5801bbb44c13d3018490f4cfd1d9e3a50d897913
[ "Apache-2.0" ]
364
2015-08-06T13:41:57.000Z
2022-03-30T17:07:19.000Z
apiVersion: apps/v1 kind: Deployment metadata: name: skipper-demo spec: replicas: 2 selector: matchLabels: application: skipper-demo template: metadata: labels: application: skipper-demo spec: containers: - name: skipper-demo image: registry.opensource.zalan.do/teapot/skipper:v0.12.0 args: - "skipper" - "-inline-routes" - "* -> inlineContent(\"<body style='color: white; background-color: green;'><h1>Hello!</h1>\") -> <shunt>" ports: - containerPort: 9090
23.875
117
0.591623
f7174e649e010dd197da500e8f9af4f48bbd39c2
205
yaml
YAML
environments/dev/manifests/minio-service.yaml
rollandf/configuration
5173b001dbf8ed3d53e0a8187a275acae3de473a
[ "Apache-2.0" ]
null
null
null
environments/dev/manifests/minio-service.yaml
rollandf/configuration
5173b001dbf8ed3d53e0a8187a275acae3de473a
[ "Apache-2.0" ]
2
2020-04-05T11:29:06.000Z
2020-04-05T11:30:29.000Z
environments/dev/manifests/minio-service.yaml
rollandf/configuration
5173b001dbf8ed3d53e0a8187a275acae3de473a
[ "Apache-2.0" ]
2
2020-05-05T13:56:39.000Z
2020-05-06T12:22:27.000Z
apiVersion: v1 kind: Service metadata: name: minio namespace: minio spec: ports: - port: 9000 protocol: TCP targetPort: 9000 selector: app.kubernetes.io/name: minio type: ClusterIP
14.642857
33
0.687805
f71796d66c183e2324e2910c345f4b73ceae3e6b
144
yaml
YAML
built-in-references/Kubernetes/perf/violations/violation8031.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation8031.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation8031.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: image-demo-8031 spec: containers: - name: nginx image: nginx #ritaacr.azurecr.io/nginx:latest
18
49
0.722222
f717cbe522488023baa79b77ca181b0370d6b97d
144
yaml
YAML
built-in-references/Kubernetes/perf/violations/violation9918.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation9918.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation9918.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: image-demo-9918 spec: containers: - name: nginx image: nginx #ritaacr.azurecr.io/nginx:latest
18
49
0.722222
f717f9005ec75535a3bbac2f29a8a5b397540f89
156
yaml
YAML
vendor/k8s.io/kubernetes/examples/volumes/rbd/secret/ceph-secret.yaml
sharang-d/kops
35cf4a352e2e115714f3d28fbda81feec2ae8a4e
[ "Apache-2.0" ]
374
2017-10-20T17:01:35.000Z
2022-03-13T00:43:28.000Z
examples/volumes/rbd/secret/ceph-secret.yaml
FairwindsOps/kubernetes
8a5fa5f74f9577319178c25b54b09d37e9c6d998
[ "Apache-2.0" ]
455
2015-07-28T11:14:25.000Z
2018-06-20T14:10:35.000Z
examples/volumes/rbd/secret/ceph-secret.yaml
FairwindsOps/kubernetes
8a5fa5f74f9577319178c25b54b09d37e9c6d998
[ "Apache-2.0" ]
251
2018-06-16T15:56:16.000Z
2022-03-28T13:06:22.000Z
apiVersion: v1 kind: Secret metadata: name: ceph-secret type: "kubernetes.io/rbd" data: key: QVFCMTZWMVZvRjVtRXhBQTVrQ1FzN2JCajhWVUxSdzI2Qzg0SEE9PQ==
19.5
63
0.794872
f7182c8a315b0ec2bdc8a98f44c75b8746796040
335
yaml
YAML
gitops/components/secrets/ticket-search-rsi-config.yaml
kkadaru/jag-traffic-courts-online
e1f6945a22efd6ec072bc9844c180cf9c7e18a25
[ "Apache-2.0" ]
null
null
null
gitops/components/secrets/ticket-search-rsi-config.yaml
kkadaru/jag-traffic-courts-online
e1f6945a22efd6ec072bc9844c180cf9c7e18a25
[ "Apache-2.0" ]
200
2021-01-15T17:55:04.000Z
2022-03-16T17:27:29.000Z
gitops/components/secrets/ticket-search-rsi-config.yaml
kkadaru/jag-traffic-courts-online
e1f6945a22efd6ec072bc9844c180cf9c7e18a25
[ "Apache-2.0" ]
7
2021-03-15T16:10:07.000Z
2022-01-10T21:56:48.000Z
kind: Secret apiVersion: v1 metadata: name: ticket-search-rsi-config data: OAUTH__CLIENTID: base64 encoded clientid OAUTH__OAUTHURL: base64 encodedoauthurl OAUTH__RESOURCEURL: base64 encoded resource url OAUTH__SECRET: base64 encoded secret RSI__BASEADDRESS: base64 encoded rsi base RSI__OPERATIONMODE: FAKE type: Opaque
25.769231
49
0.814925
f718631cd495310c26fbd38bcf834590c55a3d37
3,060
yaml
YAML
config/prow/cluster/prow_controller_manager_deployment.yaml
johananl/test-infra
ba83682fe2ed63e07788dd1390616475427abcdb
[ "Apache-2.0" ]
null
null
null
config/prow/cluster/prow_controller_manager_deployment.yaml
johananl/test-infra
ba83682fe2ed63e07788dd1390616475427abcdb
[ "Apache-2.0" ]
null
null
null
config/prow/cluster/prow_controller_manager_deployment.yaml
johananl/test-infra
ba83682fe2ed63e07788dd1390616475427abcdb
[ "Apache-2.0" ]
null
null
null
# Copyright 2020 The Kubernetes Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: namespace: default name: prow-controller-manager labels: app: prow-controller-manager spec: # Mutually exclusive with plank. Only one of them may have more than zero replicas. replicas: 1 strategy: type: RollingUpdate rollingUpdate: maxSurge: 1 maxUnavailable: 1 revisionHistoryLimit: 2 selector: matchLabels: app: prow-controller-manager template: metadata: labels: app: prow-controller-manager spec: serviceAccountName: prow-controller-manager containers: - name: prow-controller-manager image: gcr.io/k8s-prow/prow-controller-manager:v20220203-9315ecd1a0 args: - --config-path=/etc/config/config.yaml - --dry-run=false - --enable-controller=plank - --job-config-path=/etc/job-config env: # Use KUBECONFIG envvar rather than --kubeconfig flag in order to provide multiple configs to merge. - name: KUBECONFIG value: "/etc/kubeconfig/config:/etc/kubeconfig-build-test-infra-trusted/kubeconfig" ports: - name: metrics containerPort: 9090 volumeMounts: - mountPath: /etc/kubeconfig name: kubeconfig readOnly: true - mountPath: /etc/kubeconfig-build-test-infra-trusted name: kubeconfig-build-test-infra-trusted readOnly: true - name: config mountPath: /etc/config readOnly: true - name: job-config mountPath: /etc/job-config readOnly: true livenessProbe: # Pod is killed if this fails 3 times. httpGet: path: /healthz port: 8081 initialDelaySeconds: 10 periodSeconds: 5 readinessProbe: # Pod is not considered ready (for rolling deploy and request routing) if this fails 3 times. httpGet: path: /healthz/ready port: 8081 initialDelaySeconds: 10 periodSeconds: 3 volumes: - name: kubeconfig secret: defaultMode: 420 secretName: kubeconfig - name: kubeconfig-build-test-infra-trusted secret: defaultMode: 420 secretName: kubeconfig-build-test-infra-trusted - name: config configMap: name: config - name: job-config configMap: name: job-config
32.210526
117
0.641176
f7188d30213a1d8e1c01d876922d2623d8b3b484
365
yaml
YAML
kubernetes/backend-service.yaml
gtema/homeautomation
518c9a3698c96d1d73e3ef6f125ca31f2f6aa914
[ "Apache-2.0" ]
null
null
null
kubernetes/backend-service.yaml
gtema/homeautomation
518c9a3698c96d1d73e3ef6f125ca31f2f6aa914
[ "Apache-2.0" ]
null
null
null
kubernetes/backend-service.yaml
gtema/homeautomation
518c9a3698c96d1d73e3ef6f125ca31f2f6aa914
[ "Apache-2.0" ]
null
null
null
kind: Service apiVersion: v1 metadata: name: homeautomation-backend labels: app: homeautomation tier: backend spec: selector: app: homeautomation tier: backend ports: - name: "http" protocol: TCP port: 80 targetPort: 80 - name: "https" protocol: TCP port: 443 targetPort: 443 type: LoadBalancer
16.590909
30
0.624658
f7189549e6dc3e09f35e1ce3f41b626e8fa49af2
337
yaml
YAML
deploy/sample-app/pv.yaml
mathu97/csi-driver-fibre-channel
53ee2e9c571ba0258f70ccdfff732e52c9072377
[ "Apache-2.0" ]
null
null
null
deploy/sample-app/pv.yaml
mathu97/csi-driver-fibre-channel
53ee2e9c571ba0258f70ccdfff732e52c9072377
[ "Apache-2.0" ]
null
null
null
deploy/sample-app/pv.yaml
mathu97/csi-driver-fibre-channel
53ee2e9c571ba0258f70ccdfff732e52c9072377
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: PersistentVolume metadata: name: data-fcplugin labels: name: data-fcplugin spec: accessModes: - ReadWriteOnce capacity: storage: 10Mi csi: driver: fibrechannel volumeHandle: data-id volumeAttributes: targetWWNS: "[\"500a0982991b8dc5\"]" lun: "1" WWIDs: "[]"
17.736842
44
0.637982
f718f146ab98411986946043f5ee113c4d8af7c0
999
yaml
YAML
kubernetes-controllers/paymentservice-replicaset.yaml
otus-kuber-2020-11/Nmaw_platform
fab53f6eb48ed778bc5e1c0a81b15518ec67869a
[ "MIT" ]
null
null
null
kubernetes-controllers/paymentservice-replicaset.yaml
otus-kuber-2020-11/Nmaw_platform
fab53f6eb48ed778bc5e1c0a81b15518ec67869a
[ "MIT" ]
1
2020-12-11T06:03:58.000Z
2020-12-11T06:03:58.000Z
kubernetes-controllers/paymentservice-replicaset.yaml
otus-kuber-2020-11/Nmaw_platform
fab53f6eb48ed778bc5e1c0a81b15518ec67869a
[ "MIT" ]
1
2020-12-11T06:02:44.000Z
2020-12-11T06:02:44.000Z
apiVersion: apps/v1 kind: ReplicaSet metadata: name: payment labels: app: payment spec: replicas: 3 selector: matchLabels: app: payment template: metadata: labels: app: payment spec: containers: - name: server image: hipster-paymentservice:v0.0.1 resources: {} env: - name: PORT value: "8080" - name: PRODUCT_CATALOG_SERVICE_ADDR value: "productcatalogservice:3550" - name: CURRENCY_SERVICE_ADDR value: "currencyservice:7000" - name: CART_SERVICE_ADDR value: "cartservice:7070" - name: RECOMMENDATION_SERVICE_ADDR value: "recommendationservice:8080" - name: SHIPPING_SERVICE_ADDR value: "shippingservice:50051" - name: CHECKOUT_SERVICE_ADDR value: "checkoutservice:5050" - name: AD_SERVICE_ADDR value: "adservice:9555" - name: ENV_PLATFORM value: "gcp"
23.785714
45
0.595596
f718f51602ee0fdf63590881bfb8296e000dbd2e
601
yaml
YAML
teams/team-burnham/test/templates/kube-ops-view-ingress.yaml
allamand/ssp-eks-workloads
15461a34c882f96ca8d4ebec639fafc794645aa8
[ "MIT-0" ]
null
null
null
teams/team-burnham/test/templates/kube-ops-view-ingress.yaml
allamand/ssp-eks-workloads
15461a34c882f96ca8d4ebec639fafc794645aa8
[ "MIT-0" ]
null
null
null
teams/team-burnham/test/templates/kube-ops-view-ingress.yaml
allamand/ssp-eks-workloads
15461a34c882f96ca8d4ebec639fafc794645aa8
[ "MIT-0" ]
null
null
null
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: kube-ops-view-ingress namespace: kube-ops-view labels: app: kube-ops-view-ingress-{{ .Values.spec.env }} team: burnham annotations: kubernetes.io/ingress.class: 'nginx' cluster-autoscaler.kubernetes.io/safe-to-evict: "true" spec: rules: - host: kube-ops-view.{{ .Values.spec.ingress.host }} http: paths: - path: / pathType: Prefix backend: service: name: ssp-addon-kube-ops-view port: number: 80
25.041667
58
0.572379
f71912b6e5b37d70b2b3feaa486ad0d0594352ef
219
yaml
YAML
helper/vault/vault-k8s-mapper/chart/templates/binding.yaml
wurbanski/community-components
100879885579b350fc874cb304bfd366de8fdcee
[ "Apache-2.0" ]
4
2021-04-14T16:14:24.000Z
2021-08-31T22:49:52.000Z
helper/vault/vault-k8s-mapper/chart/templates/binding.yaml
wurbanski/community-components
100879885579b350fc874cb304bfd366de8fdcee
[ "Apache-2.0" ]
37
2021-04-27T16:37:23.000Z
2022-03-30T17:18:43.000Z
helper/vault/vault-k8s-mapper/chart/templates/binding.yaml
wurbanski/community-components
100879885579b350fc874cb304bfd366de8fdcee
[ "Apache-2.0" ]
10
2021-07-22T07:24:20.000Z
2022-03-28T11:04:58.000Z
apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: mapsecrets subjects: - kind: ServiceAccount name: mapsecrets roleRef: kind: Role name: mapsecrets apiGroup: rbac.authorization.k8s.io
18.25
40
0.776256
f7196088fcb64916723000df909a63d912db1907
71
yaml
YAML
k8s/gcp-specs/service-account.yaml
bethanneb/DominionStats
d9734b82d22a9af62d8be087c6a1770d9a63e12c
[ "MIT" ]
null
null
null
k8s/gcp-specs/service-account.yaml
bethanneb/DominionStats
d9734b82d22a9af62d8be087c6a1770d9a63e12c
[ "MIT" ]
null
null
null
k8s/gcp-specs/service-account.yaml
bethanneb/DominionStats
d9734b82d22a9af62d8be087c6a1770d9a63e12c
[ "MIT" ]
null
null
null
apiVersion: v1 kind: ServiceAccount metadata: name: dominionstats-ksa
17.75
25
0.816901
f7197b5ee74ff24ac5df2ffbd2a41ccb6a7a7980
5,203
yaml
YAML
atp/templates/atp/atp-configmap.yaml
EdgeGallery/helm-charts
d04ab07d34c03aa030164bff0a70200f753da972
[ "Apache-2.0" ]
33
2020-06-05T03:47:30.000Z
2021-11-16T11:36:11.000Z
atp/templates/atp/atp-configmap.yaml
EdgeGallery/helm-charts
d04ab07d34c03aa030164bff0a70200f753da972
[ "Apache-2.0" ]
2
2020-07-22T10:43:11.000Z
2020-09-27T11:27:58.000Z
atp/templates/atp/atp-configmap.yaml
EdgeGallery/helm-charts
d04ab07d34c03aa030164bff0a70200f753da972
[ "Apache-2.0" ]
12
2020-05-20T08:43:17.000Z
2020-08-09T02:33:21.000Z
########################################################################### # Copyright 2020 Huawei Technologies Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ############################################################################ apiVersion: v1 kind: ConfigMap metadata: name: atp-postgres-initdb-configmap data: postgres.sql: | CREATE TABLE TASK_TABLE ( ID VARCHAR(200) NOT NULL, APPNAME VARCHAR(200) NULL, APPVERSION VARCHAR(200) NULL, STATUS VARCHAR(200) NULL, TESTCASEDETAIL TEXT NULL, CREATETIME TIMESTAMP NULL, ENDTIME TIMESTAMP NULL, PROVIDERID VARCHAR(200) NULL, PACKAGEPATH VARCHAR(200) NULL, USERID VARCHAR(200) NULL, USERNAME VARCHAR(200) NULL, REPORTPATH VARCHAR(200) NULL, CONSTRAINT task_table_pkey PRIMARY KEY (ID) ); CREATE TABLE TEST_CASE_TABLE ( ID VARCHAR(200) NOT NULL, NAMECH VARCHAR(200) NULL, NAMEEN VARCHAR(200) NULL, TYPE VARCHAR(200) NULL, CLASSNAME VARCHAR(200) NULL, HASHCODE TEXT NULL, DESCRIPTIONCH TEXT NULL, DESCRIPTIONEN TEXT NULL, FILEPATH VARCHAR(200) NULL, CODELANGUAGE VARCHAR(200) NULL, EXPECTRESULTCH VARCHAR(200) NULL, EXPECTRESULTEN VARCHAR(200) NULL, TESTSUITEIDLIST TEXT NULL, TESTSTEPCH TEXT NULL, TESTSTEPEN TEXT NULL, CREATETIME TIMESTAMP NULL, CONFIGIDLIST TEXT NULL, CONSTRAINT test_case_table_pkey PRIMARY KEY (ID) ); CREATE TABLE TEST_SCENARIO_TABLE ( ID VARCHAR(200) NOT NULL, NAMECH VARCHAR(200) NULL, NAMEEN VARCHAR(200) NULL, DESCRIPTIONCh TEXT NULL, DESCRIPTIONEN TEXT NULL, LABEL VARCHAR(200) NULL, CREATETIME TIMESTAMP NULL, CONSTRAINT test_scenario_table_pkey PRIMARY KEY (ID) ); CREATE TABLE TEST_SUITE_TABLE ( ID VARCHAR(200) NOT NULL, NAMECH VARCHAR(200) NULL, NAMEEN VARCHAR(200) NULL, DESCRIPTIONCh TEXT NULL, DESCRIPTIONEN TEXT NULL, SCENARIOIDLIST VARCHAR(255) NULL, CREATETIME TIMESTAMP NULL, CONSTRAINT test_suite_table_pkey PRIMARY KEY (ID) ); CREATE TABLE FILE_TABLE ( FILEID VARCHAR(200) NOT NULL, TYPE VARCHAR(200) NOT NULL, CREATETIME TIMESTAMP NULL, FILEPATH VARCHAR(200) NULL ); alter table FILE_TABLE add constraint file_table_pkey unique(FILEID,TYPE); CREATE TABLE CONTRIBUTION_TABLE ( ID VARCHAR(200) NOT NULL, NAME VARCHAR(200) NULL, OBJECTIVE VARCHAR(200) NULL, STEP TEXT NULL, EXPECTRESULT TEXT NULL, TYPE VARCHAR(255) NULL, CREATETIME TIMESTAMP NULL, FILEPATH VARCHAR(200) NULL, CONSTRAINT contribution_table_pkey PRIMARY KEY (ID) ); CREATE TABLE CONFIG_TABLE ( ID VARCHAR(200) NOT NULL, NAMECH VARCHAR(200) NULL, NAMEEN VARCHAR(200) NULL, DESCRIPTIONCh TEXT NULL, DESCRIPTIONEN TEXT NULL, CONFIGURATION TEXT NOT NULL, CREATETIME TIMESTAMP NULL, CONSTRAINT config_table_pkey PRIMARY KEY (ID) );
47.3
78
0.449356
f7198b3fcaf9b36855152d8bf1f128c3c726ba73
516
yaml
YAML
kubernetes/deployment.yaml
wsosnowski/hate-speech-classification
d5378d3a46bf4a9d9614e4adbf97f656a88560e3
[ "MIT" ]
null
null
null
kubernetes/deployment.yaml
wsosnowski/hate-speech-classification
d5378d3a46bf4a9d9614e4adbf97f656a88560e3
[ "MIT" ]
null
null
null
kubernetes/deployment.yaml
wsosnowski/hate-speech-classification
d5378d3a46bf4a9d9614e4adbf97f656a88560e3
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: labels: app: score-app env: qa name: sotr-app namespace: mlops spec: replicas: 2 # Creating two PODs for our app selector: matchLabels: app: sotr-app template: metadata: labels: app: sotr-app env: qa spec: containers: - image: wsosnowski2/sotr # Docker image name, that we pushed to GCR name: sotr-project # POD name ports: - containerPort: 8010 protocol: TCP
20.64
74
0.598837
f719d3fe9b4339e70b0e0bba1764ff8aec4d938a
400
yml
YAML
manifests/deployment-7.yml
v-vinaykoora/project-aspnetcore-dotnetcore-container
b64a5b1820c841863ddb21cd17daaa8c54efef89
[ "MIT" ]
null
null
null
manifests/deployment-7.yml
v-vinaykoora/project-aspnetcore-dotnetcore-container
b64a5b1820c841863ddb21cd17daaa8c54efef89
[ "MIT" ]
null
null
null
manifests/deployment-7.yml
v-vinaykoora/project-aspnetcore-dotnetcore-container
b64a5b1820c841863ddb21cd17daaa8c54efef89
[ "MIT" ]
null
null
null
apiVersion : apps/v1 kind: Deployment metadata: name: "akstest-3225" spec: replicas: 2 selector: matchLabels: app: "akstest-3225" template: metadata: labels: app: "akstest-3225" spec: containers: - name: "akstest-3225" image: "aaaatiwarishubregistry.azurecr.io/akstest" ports: - containerPort: 8123
21.052632
61
0.5725
f71a23833ec7436744e1d6284a23506f9c2568c8
913
yaml
YAML
manifests/quick-start/base/workflow-role.yaml
devstack-argo/argo-workflow
b048875dc55aba9bb07d7ee6ea2f6290b82798e6
[ "Apache-2.0" ]
null
null
null
manifests/quick-start/base/workflow-role.yaml
devstack-argo/argo-workflow
b048875dc55aba9bb07d7ee6ea2f6290b82798e6
[ "Apache-2.0" ]
null
null
null
manifests/quick-start/base/workflow-role.yaml
devstack-argo/argo-workflow
b048875dc55aba9bb07d7ee6ea2f6290b82798e6
[ "Apache-2.0" ]
null
null
null
# https://argoproj.github.io/argo-workflows/workflow-rbac/ apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: workflow-role rules: # pod get/watch is used to identify the container IDs of the current pod - apiGroups: - "" resources: - pods verbs: - get - watch # pod patch is used to annotate the step's outputs back to controller (e.g. artifact location) # This is ONLY needed if the step/task has outputs that are used by another step or task. - patch # logs get/watch are used to get the pods logs for script outputs, and for log archival - apiGroups: - "" resources: - pods/log verbs: - get - watch # This allows one workflow to create another. # This is only needed for resource templates. - apiGroups: - argoproj.io resources: - workflows verbs: - create - get
26.852941
100
0.640745
f71a2c1f166e7f06ceb3bd14c3d1ed4b369fe9ee
66
yaml
YAML
config/100-namespace.yaml
imjasonh/image
18c12bb956b9b0cf266899a904f771d143409b1d
[ "Apache-2.0" ]
null
null
null
config/100-namespace.yaml
imjasonh/image
18c12bb956b9b0cf266899a904f771d143409b1d
[ "Apache-2.0" ]
null
null
null
config/100-namespace.yaml
imjasonh/image
18c12bb956b9b0cf266899a904f771d143409b1d
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Namespace metadata: name: shipwright-image
13.2
24
0.787879
f71a5766f76bacde69d388c308261b88a82ba534
224
yaml
YAML
Godeps/_workspace/src/k8s.io/kubernetes/examples/elasticsearch/music-service.yaml
Nick-Harvey/origin
fc205c8288a2e8191af401f007e6a0aab3d51a9f
[ "Apache-2.0" ]
2
2022-01-24T01:30:18.000Z
2022-01-24T01:30:21.000Z
Godeps/_workspace/src/k8s.io/kubernetes/examples/elasticsearch/music-service.yaml
Nick-Harvey/origin
fc205c8288a2e8191af401f007e6a0aab3d51a9f
[ "Apache-2.0" ]
null
null
null
Godeps/_workspace/src/k8s.io/kubernetes/examples/elasticsearch/music-service.yaml
Nick-Harvey/origin
fc205c8288a2e8191af401f007e6a0aab3d51a9f
[ "Apache-2.0" ]
13
2017-01-12T11:05:17.000Z
2019-04-19T09:52:13.000Z
apiVersion: v1 kind: Service metadata: name: music-server namespace: mytunes labels: name: music-db spec: selector: name: music-db ports: - name: db port: 9200 targetPort: es type: LoadBalancer
14
20
0.665179
f71a597cdb6ba83839618ab4bc748df1b2acc6af
8,359
yaml
YAML
config/301-awsdynamodbtarget.yaml
angie1148/triggermesh
b8b9d9bf6605835c92dc9b9b0fca36bca9c661bb
[ "Apache-2.0" ]
null
null
null
config/301-awsdynamodbtarget.yaml
angie1148/triggermesh
b8b9d9bf6605835c92dc9b9b0fca36bca9c661bb
[ "Apache-2.0" ]
null
null
null
config/301-awsdynamodbtarget.yaml
angie1148/triggermesh
b8b9d9bf6605835c92dc9b9b0fca36bca9c661bb
[ "Apache-2.0" ]
null
null
null
# Copyright 2022 TriggerMesh Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: name: awsdynamodbtargets.targets.triggermesh.io labels: knative.dev/crd-install: 'true' triggermesh.io/crd-install: 'true' duck.knative.dev/addressable: 'true' annotations: registry.triggermesh.io/acceptedEventTypes: | [ { "type": "*" } ] registry.knative.dev/eventTypes: | [ { "type": "io.triggermesh.targets.aws.dynamodb.result" } ] spec: group: targets.triggermesh.io names: kind: AWSDynamoDBTarget plural: awsdynamodbtargets categories: - all - knative - eventing - targets scope: Namespaced versions: - name: v1alpha1 served: true storage: true subresources: status: {} schema: openAPIV3Schema: type: object description: TriggerMesh event target for AWS DynamoDB. properties: spec: description: Desired state of event target. type: object properties: adapterOverrides: description: Kubernetes object parameters to apply on top of default adapter values. type: object properties: public: description: Adapter visibility scope. type: boolean resources: description: 'Compute Resources required by the adapter. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object properties: limits: additionalProperties: anyOf: - type: integer - type: string pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ x-kubernetes-int-or-string: true description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object requests: additionalProperties: anyOf: - type: integer - type: string pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ x-kubernetes-int-or-string: true description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/' type: object tolerations: description: Pod tolerations, as documented at https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ type: array items: type: object properties: key: description: Taint key that the toleration applies to. type: string operator: description: Key's relationship to the value. type: string enum: [Exists, Equal] value: description: Taint value the toleration matches to. type: string effect: description: Taint effect to match. type: string enum: [NoSchedule, PreferNoSchedule, NoExecute] tolerationSeconds: description: Period of time a toleration of effect NoExecute tolerates the taint. type: integer format: int64 awsApiKey: type: object description: API Key to interact with the Amazon DynamoDB API. For more information about AWS security credentials, please refer to the AWS General Reference at https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html properties: secretKeyRef: description: A reference to a Kubernetes Secret object containing the access key ID. type: object properties: key: type: string name: type: string awsApiSecret: description: API Key to interact with the Amazon DynamoDB API. For more information about AWS security credentials, please refer to the AWS General Reference at https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html type: object properties: secretKeyRef: description: A reference to a Kubernetes Secret object containing the secret access key. type: object properties: key: type: string name: type: string arn: description: ARN of the DynamoDB table to post events to. The expected format is documented at https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazondynamodb.html type: string pattern: ^arn:aws(-cn|-us-gov)?:dynamodb:[a-z]{2}(-gov)?-[a-z]+-\d:\d{12}:table\/[a-zA-Z0-9-_.]{3,255}$ required: - arn - awsApiSecret - awsApiKey status: type: object description: Reported status of the event target. properties: observedGeneration: type: integer format: int64 conditions: type: array items: type: object properties: type: type: string status: type: string enum: ['True', 'False', Unknown] severity: type: string enum: [Error, Warning, Info] reason: type: string message: type: string lastTransitionTime: type: string format: date-time required: - type - status address: type: object properties: url: type: string additionalPrinterColumns: - name: URL type: string jsonPath: .status.address.url - name: Ready type: string jsonPath: .status.conditions[?(@.type=='Ready')].status - name: Reason type: string jsonPath: .status.conditions[?(@.type=='Ready')].reason - name: Age type: date jsonPath: .metadata.creationTimestamp
41.381188
148
0.497308
f71aa80533e137d85dca3b1f3153aee42f64f0f9
508
yaml
YAML
examples/monitoring/prometheus/alertmanager/clusterrolebinding.yaml
osodevops/confluent-kubernetes-playground
145270c41c42fd78d9d163810876ad495051b671
[ "Apache-2.0" ]
8
2021-06-15T07:58:28.000Z
2022-03-30T00:00:11.000Z
examples/monitoring/prometheus/alertmanager/clusterrolebinding.yaml
osodevops/confluent-kubernetes-playground
145270c41c42fd78d9d163810876ad495051b671
[ "Apache-2.0" ]
1
2021-06-10T16:58:11.000Z
2021-06-10T16:58:11.000Z
examples/monitoring/prometheus/alertmanager/clusterrolebinding.yaml
osodevops/confluent-kubernetes-playground
145270c41c42fd78d9d163810876ad495051b671
[ "Apache-2.0" ]
3
2021-10-30T18:43:06.000Z
2022-03-07T17:58:23.000Z
--- # Source: prometheus/templates/alertmanager/clusterrolebinding.yaml apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: labels: component: "alertmanager" app: prometheus release: oso chart: prometheus-14.6.0 heritage: Helm name: oso-prometheus-alertmanager subjects: - kind: ServiceAccount name: oso-prometheus-alertmanager namespace: default roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: oso-prometheus-alertmanager
24.190476
67
0.757874
f71aad52093b21377e46460b49bbe01f7b83deff
637
yaml
YAML
controllers/07-hello-app-deployment.yaml
JesusPaz/k8s
8545e3a14cf1c7690d2e08d6925b7bbcdc4c1b91
[ "MIT" ]
null
null
null
controllers/07-hello-app-deployment.yaml
JesusPaz/k8s
8545e3a14cf1c7690d2e08d6925b7bbcdc4c1b91
[ "MIT" ]
null
null
null
controllers/07-hello-app-deployment.yaml
JesusPaz/k8s
8545e3a14cf1c7690d2e08d6925b7bbcdc4c1b91
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: hello-deployment labels: app: hello spec: replicas: 2 selector: matchLabels: app: hello template: metadata: labels: app: hello spec: containers: - name: hello image: gcr.io/google-samples/hello-app:1.0 ports: - containerPort: 8080 env: - name: MYSQL_ROOT_PASSWORD value: "password" resources: requests: memory: "61Mi" cpu: "200m" limits: memory: "128Mi" cpu: "500m"
19.90625
52
0.496075
f71af5ffdc89a74fa6920c059214cfe38d6a2b5c
184
yml
YAML
k8sdeployment/phpmyadmin/service.yml
JeffYFHuang/gpuaccounting
afa934350ebbd0634beb60b9df4a147426ea0006
[ "MIT" ]
null
null
null
k8sdeployment/phpmyadmin/service.yml
JeffYFHuang/gpuaccounting
afa934350ebbd0634beb60b9df4a147426ea0006
[ "MIT" ]
1
2021-03-25T23:44:49.000Z
2021-03-25T23:44:49.000Z
k8sdeployment/phpmyadmin/service.yml
JeffYFHuang/gpuaccounting
afa934350ebbd0634beb60b9df4a147426ea0006
[ "MIT" ]
null
null
null
--- apiVersion: v1 kind: Service metadata: name: phpmyadmin-service spec: type: NodePort selector: app: phpmyadmin ports: - protocol: TCP port: 80 targetPort: 80
13.142857
26
0.668478
f71b1366966acb6d2b8eadee974a3a3f0986a430
114,180
yaml
YAML
manifests/crds/application-crd.yaml
ichbinfrog/argo-cd
ba7d2e700f2dc1617b2e3311a7f45910b9759e64
[ "Apache-2.0" ]
1
2021-11-13T02:22:50.000Z
2021-11-13T02:22:50.000Z
manifests/crds/application-crd.yaml
ichbinfrog/argo-cd
ba7d2e700f2dc1617b2e3311a7f45910b9759e64
[ "Apache-2.0" ]
4
2022-03-09T13:34:26.000Z
2022-03-31T04:55:32.000Z
manifests/crds/application-crd.yaml
ichbinfrog/argo-cd
ba7d2e700f2dc1617b2e3311a7f45910b9759e64
[ "Apache-2.0" ]
null
null
null
apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: labels: app.kubernetes.io/name: applications.argoproj.io app.kubernetes.io/part-of: argocd name: applications.argoproj.io spec: group: argoproj.io names: kind: Application listKind: ApplicationList plural: applications shortNames: - app - apps singular: application scope: Namespaced versions: - additionalPrinterColumns: - jsonPath: .status.sync.status name: Sync Status type: string - jsonPath: .status.health.status name: Health Status type: string - jsonPath: .status.sync.revision name: Revision priority: 10 type: string name: v1alpha1 schema: openAPIV3Schema: description: Application is a definition of Application resource. properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object operation: description: Operation contains information about a requested or running operation properties: info: description: Info is a list of informational items for this operation items: properties: name: type: string value: type: string required: - name - value type: object type: array initiatedBy: description: InitiatedBy contains information about who initiated the operations properties: automated: description: Automated is set to true if operation was initiated automatically by the application controller. type: boolean username: description: Username contains the name of a user who started operation type: string type: object retry: description: Retry controls the strategy to apply if a sync fails properties: backoff: description: Backoff controls how to backoff on subsequent retries of failed syncs properties: duration: description: Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. "2m", "1h") type: string factor: description: Factor is a factor to multiply the base duration after each failed retry format: int64 type: integer maxDuration: description: MaxDuration is the maximum amount of time allowed for the backoff strategy type: string type: object limit: description: Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. format: int64 type: integer type: object sync: description: Sync contains parameters for the operation properties: dryRun: description: DryRun specifies to perform a `kubectl apply --dry-run` without actually performing the sync type: boolean manifests: description: Manifests is an optional field that overrides sync source with a local directory for development items: type: string type: array prune: description: Prune specifies to delete resources from the cluster that are no longer tracked in git type: boolean resources: description: Resources describes which resources shall be part of the sync items: description: SyncOperationResource contains resources to sync. properties: group: type: string kind: type: string name: type: string namespace: type: string required: - kind - name type: object type: array revision: description: Revision is the revision (Git) or chart version (Helm) which to sync the application to If omitted, will use the revision specified in app spec. type: string source: description: Source overrides the source definition set in the application. This is typically set in a Rollback operation and is nil during a Sync operation properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object syncOptions: description: SyncOptions provide per-sync sync-options, e.g. Validate=false items: type: string type: array syncStrategy: description: SyncStrategy describes how to perform the sync properties: apply: description: Apply will perform a `kubectl apply` to perform the sync. properties: force: description: Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times. type: boolean type: object hook: description: Hook will submit any referenced resources to perform the sync. This is the default strategy properties: force: description: Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times. type: boolean type: object type: object type: object type: object spec: description: ApplicationSpec represents desired application state. Contains link to repository with application definition and additional parameters link definition revision. properties: destination: description: Destination is a reference to the target Kubernetes server and namespace properties: name: description: Name is an alternate way of specifying the target cluster by its symbolic name type: string namespace: description: Namespace specifies the target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace type: string server: description: Server specifies the URL of the target cluster and must be set to the Kubernetes control plane API type: string type: object ignoreDifferences: description: IgnoreDifferences is a list of resources and their fields which should be ignored during comparison items: description: ResourceIgnoreDifferences contains resource filter and list of json paths which should be ignored during comparison with live state. properties: group: type: string jqPathExpressions: items: type: string type: array jsonPointers: items: type: string type: array kind: type: string managedFieldsManagers: description: ManagedFieldsManagers is a list of trusted managers. Fields mutated by those managers will take precedence over the desired state defined in the SCM and won't be displayed in diffs items: type: string type: array name: type: string namespace: type: string required: - kind type: object type: array info: description: Info contains a list of information (URLs, email addresses, and plain text) that relates to the application items: properties: name: type: string value: type: string required: - name - value type: object type: array project: description: Project is a reference to the project this application belongs to. The empty string means that application belongs to the 'default' project. type: string revisionHistoryLimit: description: RevisionHistoryLimit limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10. format: int64 type: integer source: description: Source is a reference to the location of the application's manifests or chart properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object syncPolicy: description: SyncPolicy controls when and how a sync will be performed properties: automated: description: Automated will keep an application synced to the target revision properties: allowEmpty: description: 'AllowEmpty allows apps have zero live resources (default: false)' type: boolean prune: description: 'Prune specifies whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync (default: false)' type: boolean selfHeal: description: 'SelfHeal specifes whether to revert resources back to their desired state upon modification in the cluster (default: false)' type: boolean type: object retry: description: Retry controls failed sync retry behavior properties: backoff: description: Backoff controls how to backoff on subsequent retries of failed syncs properties: duration: description: Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. "2m", "1h") type: string factor: description: Factor is a factor to multiply the base duration after each failed retry format: int64 type: integer maxDuration: description: MaxDuration is the maximum amount of time allowed for the backoff strategy type: string type: object limit: description: Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. format: int64 type: integer type: object syncOptions: description: Options allow you to specify whole app sync-options items: type: string type: array type: object required: - destination - project - source type: object status: description: ApplicationStatus contains status information for the application properties: conditions: description: Conditions is a list of currently observed application conditions items: description: ApplicationCondition contains details about an application condition, which is usally an error or warning properties: lastTransitionTime: description: LastTransitionTime is the time the condition was last observed format: date-time type: string message: description: Message contains human-readable message indicating details about condition type: string type: description: Type is an application condition type type: string required: - message - type type: object type: array health: description: Health contains information about the application's current health status properties: message: description: Message is a human-readable informational message describing the health status type: string status: description: Status holds the status code of the application or resource type: string type: object history: description: History contains information about the application's sync history items: description: RevisionHistory contains history information about a previous sync properties: deployStartedAt: description: DeployStartedAt holds the time the sync operation started format: date-time type: string deployedAt: description: DeployedAt holds the time the sync operation completed format: date-time type: string id: description: ID is an auto incrementing identifier of the RevisionHistory format: int64 type: integer revision: description: Revision holds the revision the sync was performed against type: string source: description: Source is a reference to the application source used for the sync operation properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object required: - deployedAt - id - revision type: object type: array observedAt: description: 'ObservedAt indicates when the application state was updated without querying latest git state Deprecated: controller no longer updates ObservedAt field' format: date-time type: string operationState: description: OperationState contains information about any ongoing operations, such as a sync properties: finishedAt: description: FinishedAt contains time of operation completion format: date-time type: string message: description: Message holds any pertinent messages when attempting to perform operation (typically errors). type: string operation: description: Operation is the original requested operation properties: info: description: Info is a list of informational items for this operation items: properties: name: type: string value: type: string required: - name - value type: object type: array initiatedBy: description: InitiatedBy contains information about who initiated the operations properties: automated: description: Automated is set to true if operation was initiated automatically by the application controller. type: boolean username: description: Username contains the name of a user who started operation type: string type: object retry: description: Retry controls the strategy to apply if a sync fails properties: backoff: description: Backoff controls how to backoff on subsequent retries of failed syncs properties: duration: description: Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. "2m", "1h") type: string factor: description: Factor is a factor to multiply the base duration after each failed retry format: int64 type: integer maxDuration: description: MaxDuration is the maximum amount of time allowed for the backoff strategy type: string type: object limit: description: Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. format: int64 type: integer type: object sync: description: Sync contains parameters for the operation properties: dryRun: description: DryRun specifies to perform a `kubectl apply --dry-run` without actually performing the sync type: boolean manifests: description: Manifests is an optional field that overrides sync source with a local directory for development items: type: string type: array prune: description: Prune specifies to delete resources from the cluster that are no longer tracked in git type: boolean resources: description: Resources describes which resources shall be part of the sync items: description: SyncOperationResource contains resources to sync. properties: group: type: string kind: type: string name: type: string namespace: type: string required: - kind - name type: object type: array revision: description: Revision is the revision (Git) or chart version (Helm) which to sync the application to If omitted, will use the revision specified in app spec. type: string source: description: Source overrides the source definition set in the application. This is typically set in a Rollback operation and is nil during a Sync operation properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object syncOptions: description: SyncOptions provide per-sync sync-options, e.g. Validate=false items: type: string type: array syncStrategy: description: SyncStrategy describes how to perform the sync properties: apply: description: Apply will perform a `kubectl apply` to perform the sync. properties: force: description: Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times. type: boolean type: object hook: description: Hook will submit any referenced resources to perform the sync. This is the default strategy properties: force: description: Force indicates whether or not to supply the --force flag to `kubectl apply`. The --force flag deletes and re-create the resource, when PATCH encounters conflict and has retried for 5 times. type: boolean type: object type: object type: object type: object phase: description: Phase is the current phase of the operation type: string retryCount: description: RetryCount contains time of operation retries format: int64 type: integer startedAt: description: StartedAt contains time of operation start format: date-time type: string syncResult: description: SyncResult is the result of a Sync operation properties: resources: description: Resources contains a list of sync result items for each individual resource in a sync operation items: description: ResourceResult holds the operation result details of a specific resource properties: group: description: Group specifies the API group of the resource type: string hookPhase: description: HookPhase contains the state of any operation associated with this resource OR hook This can also contain values for non-hook resources. type: string hookType: description: HookType specifies the type of the hook. Empty for non-hook resources type: string kind: description: Kind specifies the API kind of the resource type: string message: description: Message contains an informational or error message for the last sync OR operation type: string name: description: Name specifies the name of the resource type: string namespace: description: Namespace specifies the target namespace of the resource type: string status: description: Status holds the final result of the sync. Will be empty if the resources is yet to be applied/pruned and is always zero-value for hooks type: string syncPhase: description: SyncPhase indicates the particular phase of the sync that this result was acquired in type: string version: description: Version specifies the API version of the resource type: string required: - group - kind - name - namespace - version type: object type: array revision: description: Revision holds the revision this sync operation was performed to type: string source: description: Source records the application source information of the sync, used for comparing auto-sync properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object required: - revision type: object required: - operation - phase - startedAt type: object reconciledAt: description: ReconciledAt indicates when the application state was reconciled using the latest git version format: date-time type: string resources: description: Resources is a list of Kubernetes resources managed by this application items: description: 'ResourceStatus holds the current sync and health status of a resource TODO: describe members of this type' properties: group: type: string health: description: HealthStatus contains information about the currently observed health state of an application or resource properties: message: description: Message is a human-readable informational message describing the health status type: string status: description: Status holds the status code of the application or resource type: string type: object hook: type: boolean kind: type: string name: type: string namespace: type: string requiresPruning: type: boolean status: description: SyncStatusCode is a type which represents possible comparison results type: string version: type: string type: object type: array sourceType: description: SourceType specifies the type of this application type: string summary: description: Summary contains a list of URLs and container images used by this application properties: externalURLs: description: ExternalURLs holds all external URLs of application child resources. items: type: string type: array images: description: Images holds all images of application child resources. items: type: string type: array type: object sync: description: Sync contains information about the application's current sync status properties: comparedTo: description: ComparedTo contains information about what has been compared properties: destination: description: Destination is a reference to the application's destination used for comparison properties: name: description: Name is an alternate way of specifying the target cluster by its symbolic name type: string namespace: description: Namespace specifies the target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace type: string server: description: Server specifies the URL of the target cluster and must be set to the Kubernetes control plane API type: string type: object source: description: Source is a reference to the application's source used for comparison properties: chart: description: Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo. type: string directory: description: Directory holds path/directory specific options properties: exclude: description: Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation type: string include: description: Include contains a glob pattern to match paths against that should be explicitly included during manifest generation type: string jsonnet: description: Jsonnet holds options specific to Jsonnet properties: extVars: description: ExtVars is a list of Jsonnet External Variables items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array libs: description: Additional library search dirs items: type: string type: array tlas: description: TLAS is a list of Jsonnet Top-level Arguments items: description: JsonnetVar represents a variable to be passed to jsonnet during manifest generation properties: code: type: boolean name: type: string value: type: string required: - name - value type: object type: array type: object recurse: description: Recurse specifies whether to scan a directory recursively for manifests type: boolean type: object helm: description: Helm holds helm specific options properties: fileParameters: description: FileParameters are file parameters to the helm template items: description: HelmFileParameter is a file parameter that's passed to helm template during manifest generation properties: name: description: Name is the name of the Helm parameter type: string path: description: Path is the path to the file containing the values for the Helm parameter type: string type: object type: array ignoreMissingValueFiles: description: IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values type: boolean parameters: description: Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation items: description: HelmParameter is a parameter that's passed to helm template during manifest generation properties: forceString: description: ForceString determines whether to tell Helm to interpret booleans and numbers as strings type: boolean name: description: Name is the name of the Helm parameter type: string value: description: Value is the value for the Helm parameter type: string type: object type: array passCredentials: description: PassCredentials pass credentials to all domains (Helm's --pass-credentials) type: boolean releaseName: description: ReleaseName is the Helm release name to use. If omitted it will use the application name type: string skipCrds: description: SkipCrds skips custom resource definition installation step (Helm's --skip-crds) type: boolean valueFiles: description: ValuesFiles is a list of Helm value files to use when generating a template items: type: string type: array values: description: Values specifies Helm values to be passed to helm template, typically defined as a block type: string version: description: Version is the Helm version to use for templating ("3") type: string type: object kustomize: description: Kustomize holds kustomize specific options properties: commonAnnotations: additionalProperties: type: string description: CommonAnnotations is a list of additional annotations to add to rendered manifests type: object commonLabels: additionalProperties: type: string description: CommonLabels is a list of additional labels to add to rendered manifests type: object forceCommonAnnotations: description: ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps type: boolean forceCommonLabels: description: ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps type: boolean images: description: Images is a list of Kustomize image override specifications items: description: KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag> type: string type: array namePrefix: description: NamePrefix is a prefix appended to resources for Kustomize apps type: string nameSuffix: description: NameSuffix is a suffix appended to resources for Kustomize apps type: string version: description: Version controls which version of Kustomize to use for rendering manifests type: string type: object path: description: Path is a directory path within the Git repository, and is only valid for applications sourced from Git. type: string plugin: description: ConfigManagementPlugin holds config management plugin specific options properties: env: description: Env is a list of environment variable entries items: description: EnvEntry represents an entry in the application's environment properties: name: description: Name is the name of the variable, usually expressed in uppercase type: string value: description: Value is the value of the variable type: string required: - name - value type: object type: array name: type: string type: object repoURL: description: RepoURL is the URL to the repository (Git or Helm) that contains the application manifests type: string targetRevision: description: TargetRevision defines the revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version. type: string required: - repoURL type: object required: - destination - source type: object revision: description: Revision contains information about the revision the comparison has been performed to type: string status: description: Status is the sync state of the comparison type: string required: - status type: object type: object required: - metadata - spec type: object served: true storage: true subresources: {}
53.082287
175
0.386136
f71b32c5601e270a2b34ec39cb0ecf38219589ec
3,460
yaml
YAML
config-root/namespaces/jx/lighthouse/lighthouse-webhooks-deploy.yaml
OHHYUN/Test_Jenkinsx
6a57024594198f56755bedecf23a9a5ab9a90ac3
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-webhooks-deploy.yaml
OHHYUN/Test_Jenkinsx
6a57024594198f56755bedecf23a9a5ab9a90ac3
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-webhooks-deploy.yaml
OHHYUN/Test_Jenkinsx
6a57024594198f56755bedecf23a9a5ab9a90ac3
[ "Apache-2.0" ]
null
null
null
# Source: lighthouse/templates/webhooks-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: lighthouse-webhooks labels: chart: "lighthouse-1.1.41" app: lighthouse-webhooks git.jenkins-x.io/sha: annotate gitops.jenkins-x.io/pipeline: 'namespaces' annotations: checksum/config: cca6b2f42d7393045e9e749df2be9e7f342f64b4c723a82c3c7c4d0cb91793f6 meta.helm.sh/release-name: 'lighthouse' wave.pusher.com/update-on-config-change: 'true' namespace: jx spec: replicas: 1 selector: matchLabels: app: lighthouse-webhooks template: metadata: labels: app: lighthouse-webhooks annotations: prometheus.io/port: "2112" prometheus.io/scrape: "true" jenkins-x.io/hash: '5e6bccde9c3bac58bf04598ba5c0d440ede72b84637d58a98043893d7122417d' spec: serviceAccountName: lighthouse-webhooks containers: - name: lighthouse-webhooks image: ghcr.io/jenkins-x/lighthouse-webhooks:1.1.41 imagePullPolicy: IfNotPresent args: - "--namespace=jx" env: - name: "GIT_KIND" value: "github" - name: "LH_CUSTOM_TRIGGER_COMMAND" value: "jx" - name: "GIT_SERVER" value: "https://github.com" - name: "GIT_USER" value: OHHYUN - name: "GIT_TOKEN" valueFrom: secretKeyRef: name: lighthouse-oauth-token key: oauth - name: "HMAC_TOKEN" valueFrom: secretKeyRef: name: "lighthouse-hmac-token" key: hmac optional: false - name: "JX_LOG_FORMAT" value: "json" - name: "LOGRUS_FORMAT" value: "json" - name: LOGRUS_SERVICE value: "lighthouse" - name: LOGRUS_SERVICE_VERSION value: "1.1.41" - name: LOGRUS_STACK_SKIP value: "" - name: DEFAULT_PIPELINE_RUN_SERVICE_ACCOUNT value: "tekton-bot" - name: DEFAULT_PIPELINE_RUN_TIMEOUT value: "2h0m0s" - name: FILE_BROWSER value: "git" - name: JX_DEFAULT_IMAGE value: "ghcr.io/jenkins-x/builder-maven:2.1.149-768" - name: LIGHTHOUSE_DASHBOARD_TEMPLATE value: "namespaces/{{ .Namespace }}/pipelineruns/{{ .PipelineRun }}" - name: LIGHTHOUSE_VERSIONSTREAM_JENKINS_X_JX3_PIPELINE_CATALOG value: "974b52c387d1fabee626da3b78536faf4c7848e9" envFrom: - secretRef: name: jx-boot-job-env-vars optional: true ports: - containerPort: 8080 livenessProbe: httpGet: path: / port: 8080 initialDelaySeconds: 60 periodSeconds: 10 successThreshold: 1 timeoutSeconds: 1 readinessProbe: httpGet: path: / port: 8080 periodSeconds: 10 successThreshold: 1 timeoutSeconds: 1 resources: limits: cpu: 100m memory: 512Mi requests: cpu: 80m memory: 128Mi terminationGracePeriodSeconds: 180
32.037037
93
0.541329
f71b842ac99af491641eaa028304c22d3b43df2e
1,313
yaml
YAML
config/manager/deployment.yaml
jparrill/hive
ed7dfcb60d719846815e1f7be88a8060cc76949c
[ "Apache-2.0" ]
null
null
null
config/manager/deployment.yaml
jparrill/hive
ed7dfcb60d719846815e1f7be88a8060cc76949c
[ "Apache-2.0" ]
null
null
null
config/manager/deployment.yaml
jparrill/hive
ed7dfcb60d719846815e1f7be88a8060cc76949c
[ "Apache-2.0" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: hive-controllers namespace: hive labels: control-plane: controller-manager controller-tools.k8s.io: "1.0" spec: selector: matchLabels: control-plane: controller-manager controller-tools.k8s.io: "1.0" replicas: 1 revisionHistoryLimit: 4 template: metadata: labels: control-plane: controller-manager controller-tools.k8s.io: "1.0" spec: serviceAccountName: default volumes: - name: kubectl-cache emptyDir: {} containers: # By default we will use the latest CI images published from hive master: - image: registry.svc.ci.openshift.org/openshift/hive-v4.0:hive imagePullPolicy: Always name: manager resources: requests: cpu: 50m memory: 512Mi command: - /opt/services/manager volumeMounts: - name: kubectl-cache mountPath: /var/cache/kubectl env: - name: CLI_CACHE_DIR value: /var/cache/kubectl livenessProbe: httpGet: path: /debug/health port: 8080 initialDelaySeconds: 10 failureThreshold: 1 periodSeconds: 10 terminationGracePeriodSeconds: 10
25.745098
79
0.603199
f71b851a912d9beb0af8564a4762ab6091b9290b
204
yml
YAML
manifests/service.yml
sugam192/pipelines-javascript-docker
37b7ea9267e5dd33264f68dac1637d31a9630f40
[ "CC-BY-4.0", "MIT" ]
null
null
null
manifests/service.yml
sugam192/pipelines-javascript-docker
37b7ea9267e5dd33264f68dac1637d31a9630f40
[ "CC-BY-4.0", "MIT" ]
null
null
null
manifests/service.yml
sugam192/pipelines-javascript-docker
37b7ea9267e5dd33264f68dac1637d31a9630f40
[ "CC-BY-4.0", "MIT" ]
null
null
null
apiVersion: v1 kind: Service metadata: name: sugampipelinesjavascriptdocker spec: type: LoadBalancer ports: - port: 8080 selector: app: sugampipelinesjavascriptdocker
20.4
43
0.681373
f71b8a880df6241dec7bb8357b12405bc20d7343
194
yaml
YAML
k8s/uat/ratings-service.yaml
Meawmafia/bookinfo-ratings
2de19935401d803c3b2ce3d1994cf3f62523df3f
[ "MIT" ]
null
null
null
k8s/uat/ratings-service.yaml
Meawmafia/bookinfo-ratings
2de19935401d803c3b2ce3d1994cf3f62523df3f
[ "MIT" ]
null
null
null
k8s/uat/ratings-service.yaml
Meawmafia/bookinfo-ratings
2de19935401d803c3b2ce3d1994cf3f62523df3f
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Service metadata: name: bookinfo-uat-ratings namespace: student063-bookinfo-uat spec: type: ClusterIP ports: - port: 8080 selector: app: bookinfo-uat-ratings
17.636364
36
0.731959
f71c786a6967cadb0552a929a2d993aa30163977
240
yaml
YAML
persistentvolume/vol-5.yaml
ivaners/k8s-redis-cluster
cc5b627e22e45bf60926cc7f9269ec7aa126c6b3
[ "MIT" ]
3
2019-07-29T07:10:11.000Z
2020-08-09T11:41:40.000Z
persistentvolume/vol-5.yaml
ivaners/k8s-redis-cluster
cc5b627e22e45bf60926cc7f9269ec7aa126c6b3
[ "MIT" ]
null
null
null
persistentvolume/vol-5.yaml
ivaners/k8s-redis-cluster
cc5b627e22e45bf60926cc7f9269ec7aa126c6b3
[ "MIT" ]
1
2020-12-09T15:50:42.000Z
2020-12-09T15:50:42.000Z
kind: PersistentVolume apiVersion: v1 metadata: name: redis-pv-4 labels: type: local spec: storageClassName: redis-manual-4 capacity: storage: 200m accessModes: - ReadWriteOnce hostPath: path: /code/redis_path/n5
17.142857
34
0.708333
f71ce9139434b754e3f011c01decb2380d5d1772
149
yaml
YAML
secrets/staple_mg_creds.yaml
staple-org/infrastructure
cd77ce453ed8252b5b2a3d10730a8eb82c67be54
[ "Apache-2.0" ]
3
2020-02-29T00:35:57.000Z
2020-09-17T01:32:04.000Z
secrets/staple_mg_creds.yaml
staple-org/infrastructure
cd77ce453ed8252b5b2a3d10730a8eb82c67be54
[ "Apache-2.0" ]
null
null
null
secrets/staple_mg_creds.yaml
staple-org/infrastructure
cd77ce453ed8252b5b2a3d10730a8eb82c67be54
[ "Apache-2.0" ]
1
2020-09-17T01:32:11.000Z
2020-09-17T01:32:11.000Z
apiVersion: v1 kind: Secret metadata: name: staple-mg-creds namespace: staple data: MG_DOMAIN: cGFzc3dvcmQxMjM= MG_API_KEY: cGFzc3dvcmQxMjM=
16.555556
30
0.771812
f71dabe9193afe11f790e5e4f303a2dd620711d7
341
yaml
YAML
px_snapshot_clone.yaml
PureStorage-OpenConnect/Oracle-on-Kubernetes-with-Portworx
c5ffad04e62754acc43804c5f0745a9af9b4bdc5
[ "Apache-2.0" ]
3
2021-05-24T09:11:45.000Z
2021-07-06T22:10:08.000Z
px_snapshot_clone.yaml
PureStorage-OpenConnect/Oracle-on-Kubernetes
3807aef55c268f52daf4f247e8eded65cc193b93
[ "Apache-2.0" ]
null
null
null
px_snapshot_clone.yaml
PureStorage-OpenConnect/Oracle-on-Kubernetes
3807aef55c268f52daf4f247e8eded65cc193b93
[ "Apache-2.0" ]
1
2022-03-23T19:57:48.000Z
2022-03-23T19:57:48.000Z
apiVersion: v1 kind: PersistentVolumeClaim metadata: name: ora-data184-claim-snapshot-clone labels: app: database version: 18.4.0.1 spec: storageClassName: px-ora-csi-sc dataSource: name: ora-data184-claim-snapshot kind: VolumeSnapshot accessModes: - ReadWriteOnce resources: requests: storage: 5Gi
18.944444
40
0.709677
f71e290a7b4049f9a6a731501bc33aeaffa29199
648
yaml
YAML
kubernetes/volumes/pod-db-with-volume.yaml
sebastianczech/Learning-CI-CD
049291a1e5eecf86920ed79946a9621e213b6441
[ "Apache-2.0" ]
1
2022-01-22T18:51:47.000Z
2022-01-22T18:51:47.000Z
kubernetes/volumes/pod-db-with-volume.yaml
sebastianczech/Learning-CI-CD
049291a1e5eecf86920ed79946a9621e213b6441
[ "Apache-2.0" ]
null
null
null
kubernetes/volumes/pod-db-with-volume.yaml
sebastianczech/Learning-CI-CD
049291a1e5eecf86920ed79946a9621e213b6441
[ "Apache-2.0" ]
null
null
null
--- apiVersion: v1 kind: Pod metadata: name: api-db spec: containers: - name: api-database image: postgres:latest env: - name: POSTGRES_PASSWORD valueFrom: secretKeyRef: name: api-secret key: POSTGRES_PASSWORD volumeMounts: - mountPath: "/var/lib/postgresql" name: api-data initContainers: - name: pgsql-data-permission-fix image: busybox command: ["/bin/chmod","-R","777", "/data"] volumeMounts: - name: api-data mountPath: /data volumes: - name: api-data persistentVolumeClaim: claimName: api-pvc
22.344828
47
0.578704
f71e6a73b59d2a2f46ff26420c8c92f76a5f0425
2,474
yaml
YAML
config-root/namespaces/jx/lighthouse/lighthouse-tekton-controller-deploy.yaml
gengxi/jx3-k3s-vault
ea823d5862190dca48b80e0c3d6775ac868b2239
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-tekton-controller-deploy.yaml
gengxi/jx3-k3s-vault
ea823d5862190dca48b80e0c3d6775ac868b2239
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-tekton-controller-deploy.yaml
gengxi/jx3-k3s-vault
ea823d5862190dca48b80e0c3d6775ac868b2239
[ "Apache-2.0" ]
null
null
null
# Source: lighthouse/templates/tekton-controller-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: lighthouse-tekton-controller labels: chart: "lighthouse-1.5.7" app: lighthouse-tekton-controller gitops.jenkins-x.io/pipeline: 'namespaces' annotations: meta.helm.sh/release-name: 'lighthouse' wave.pusher.com/update-on-config-change: 'true' namespace: jx spec: replicas: 1 selector: matchLabels: app: lighthouse-tekton-controller template: metadata: labels: app: lighthouse-tekton-controller annotations: {jenkins-x.io/hash: '60461a69ffa09bc8e76a211946cab1220740169ece13144fe59417d2d20f18ab'} spec: serviceAccountName: lighthouse-tekton-controller containers: - name: lighthouse-tekton-controller image: ghcr.io/jenkins-x/lighthouse-tekton-controller:1.5.7 imagePullPolicy: IfNotPresent args: - --namespace=jx - --dashboard-url=http://dashboard.jx.change.me - --dashboard-template=namespaces/{{ .Namespace }}/pipelineruns/{{ .PipelineRun }} ports: - name: metrics containerPort: 8080 env: - name: "LOGRUS_FORMAT" value: "json" - name: LOGRUS_SERVICE value: "lighthouse" - name: LOGRUS_SERVICE_VERSION value: "1.5.7" - name: LOGRUS_STACK_SKIP value: "" - name: DEFAULT_PIPELINE_RUN_SERVICE_ACCOUNT value: "tekton-bot" - name: DEFAULT_PIPELINE_RUN_TIMEOUT value: "2h0m0s" - name: FILE_BROWSER value: "git" - name: JX_DEFAULT_IMAGE value: "ghcr.io/jenkins-x/builder-maven:2.1.149-768" - name: LIGHTHOUSE_DASHBOARD_TEMPLATE value: "namespaces/{{ .Namespace }}/pipelineruns/{{ .PipelineRun }}" - name: LIGHTHOUSE_VERSIONSTREAM_JENKINS_X_JX3_PIPELINE_CATALOG value: "9e58caa93ba0a07182b4512285c1b1d01a279995" envFrom: - secretRef: name: jx-boot-job-env-vars optional: true resources: limits: cpu: 100m memory: 256Mi requests: cpu: 80m memory: 128Mi terminationGracePeriodSeconds: 180 nodeSelector: {} affinity: {} tolerations: []
33.890411
106
0.590542
f71f48a686ddac15d7999215c7a47d1cc6343c1d
1,086
yaml
YAML
config/prow/cluster/sinker_deployment.yaml
goern/test-infra
f8847296b4f1d34272426022afae116e4b56b515
[ "Apache-2.0" ]
1
2020-07-17T09:20:41.000Z
2020-07-17T09:20:41.000Z
config/prow/cluster/sinker_deployment.yaml
goern/test-infra
f8847296b4f1d34272426022afae116e4b56b515
[ "Apache-2.0" ]
null
null
null
config/prow/cluster/sinker_deployment.yaml
goern/test-infra
f8847296b4f1d34272426022afae116e4b56b515
[ "Apache-2.0" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: namespace: default name: sinker labels: app: sinker spec: replicas: 1 selector: matchLabels: app: sinker template: metadata: labels: app: sinker spec: serviceAccountName: sinker containers: - name: sinker args: - --kubeconfig=/etc/kubeconfig/config - --config-path=/etc/config/config.yaml - --job-config-path=/etc/job-config - --dry-run=false image: gcr.io/k8s-prow/sinker:v20200628-cc1c099dad volumeMounts: - mountPath: /etc/kubeconfig name: kubeconfig readOnly: true - name: config mountPath: /etc/config readOnly: true - name: job-config mountPath: /etc/job-config readOnly: true volumes: - name: kubeconfig secret: defaultMode: 420 secretName: kubeconfig - name: config configMap: name: config - name: job-config configMap: name: job-config
22.625
58
0.561694
f71f6d99a000134e58a0870cf1a44c5156a66448
1,780
yaml
YAML
elasticsearch/sample/exporter/mon-pods.yaml
pawankkamboj/ELK-k8s
2be518a5c712220379d29301e89585c5c7e6b034
[ "Apache-2.0" ]
null
null
null
elasticsearch/sample/exporter/mon-pods.yaml
pawankkamboj/ELK-k8s
2be518a5c712220379d29301e89585c5c7e6b034
[ "Apache-2.0" ]
null
null
null
elasticsearch/sample/exporter/mon-pods.yaml
pawankkamboj/ELK-k8s
2be518a5c712220379d29301e89585c5c7e6b034
[ "Apache-2.0" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: elastic-exporter namespace: monitoring labels: app: elastic-exporter spec: replicas: 1 revisionHistoryLimit: 10 selector: matchLabels: app: elastic-exporter strategy: rollingUpdate: maxSurge: 1 maxUnavailable: 0 type: RollingUpdate template: metadata: labels: app: elastic-exporter annotations: prometheus.io/port: "9114" prometheus.io/scrape: "true" spec: securityContext: runAsNonRoot: true runAsUser: 1000 containers: - command: - /bin/elasticsearch_exporter - --es.uri=http://es-master.logging.svc.cluster.local:9200 - --es.all - --es.timeout=60s image: justwatch/elasticsearch_exporter:1.1.0 securityContext: capabilities: drop: - SETPCAP - MKNOD - AUDIT_WRITE - CHOWN - NET_RAW - DAC_OVERRIDE - FOWNER - FSETID - KILL - SETGID - SETUID - NET_BIND_SERVICE - SYS_CHROOT - SETFCAP readOnlyRootFilesystem: true livenessProbe: httpGet: path: /health port: 9114 initialDelaySeconds: 30 timeoutSeconds: 10 name: elastic-exporter ports: - containerPort: 9114 readinessProbe: httpGet: path: /health port: 9114 initialDelaySeconds: 10 timeoutSeconds: 10 resources: limits: cpu: 100m memory: 128Mi requests: cpu: 25m memory: 64Mi
23.116883
66
0.522472
f71f793137c539be87acc81c3b2734e30f072e8d
230
yml
YAML
MicroService/nacos/nacos/kubernetes/nacos-svc.yml
slpcat/docker-collections
6428f8b1a4e322889a85f1a8f54df0d8ff1c544e
[ "BSD-3-Clause" ]
63
2018-02-04T03:31:22.000Z
2022-03-07T08:27:39.000Z
MicroService/nacos/nacos/kubernetes/nacos-svc.yml
slpcat/docker-collections
6428f8b1a4e322889a85f1a8f54df0d8ff1c544e
[ "BSD-3-Clause" ]
2
2018-09-17T07:02:36.000Z
2020-03-17T17:00:46.000Z
MicroService/nacos/nacos/kubernetes/nacos-svc.yml
slpcat/docker-collections
6428f8b1a4e322889a85f1a8f54df0d8ff1c544e
[ "BSD-3-Clause" ]
40
2018-01-22T16:31:16.000Z
2022-03-08T04:40:42.000Z
--- apiVersion: v1 kind: Service metadata: name: nacos-svc namespace: default labels: app: nacos-svc spec: type: ClusterIP ports: - port: 8848 name: server targetPort: 8848 selector: app: nacos
13.529412
22
0.634783
f71f9497d4c49f6b155f76b93c3db6d8c3c4fbec
7,829
yml
YAML
ansible/secrets/tls-docker.yml
govinr/kube-deploy
3624ab187e7f4e7d0cb2a45816f24122d7385637
[ "Apache-2.0" ]
69
2018-07-20T18:46:11.000Z
2022-01-24T04:23:20.000Z
ansible/secrets/tls-docker.yml
govinr/kube-deploy
3624ab187e7f4e7d0cb2a45816f24122d7385637
[ "Apache-2.0" ]
1
2018-10-23T05:07:57.000Z
2018-11-04T20:15:50.000Z
ansible/secrets/tls-docker.yml
govinr/kube-deploy
3624ab187e7f4e7d0cb2a45816f24122d7385637
[ "Apache-2.0" ]
24
2018-09-13T22:58:19.000Z
2021-02-28T02:27:27.000Z
apiVersion: v1 data: tls.crt: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUd2VENDQktXZ0F3SUJBZ0lKQU90cXRXS1BNb2p5TUEwR0NTcUdTSWIzRFFFQkN3VUFNR014Q3pBSkJnTlYKQkFZVEFsVlRNUXN3Q1FZRFZRUUlEQUpEUVRFTk1Bc0dBMVVFQnd3RVEybDBlVEVRTUE0R0ExVUVDZ3dIUlhoaApiWEJzWlRFUU1BNEdBMVVFQ3d3SFJYaGhiWEJzWlRFVU1CSUdBMVVFQXd3TFpYaGhiWEJzWlM1amIyMHdIaGNOCk1UZ3hNakU0TWpJeE56STJXaGNOTVRreE1qRTRNakl4TnpJMldqQmxNUXN3Q1FZRFZRUUdFd0pWVXpFTE1Ba0cKQTFVRUNBd0NRMEV4RFRBTEJnTlZCQWNNQkVOcGRIa3hFREFPQmdOVkJBb01CMFY0WVcxd2JHVXhFREFPQmdOVgpCQXNNQjBWNFlXMXdiR1V4RmpBVUJnTlZCQU1NRFNvdVpYaGhiWEJzWlM1amIyMHdnZ0lpTUEwR0NTcUdTSWIzCkRRRUJBUVVBQTRJQ0R3QXdnZ0lLQW9JQ0FRQzJZTHl1a0lKNS9vM0FZWjdlL1lEZG91K0tsRXNoK1luRFU1TWgKZnBZZm5jR1pheFZJWEUzaGlMcXpwQTczbDR4MnBRSitYM3FuNmRRLzJSOXZrSzcwRFVYcnV5Y3BoblVxSjR1Ywppc01lclBIK1ZKZU8vYzdwYXI2VVo2aWxDRDdNRWpBclVLYUJCSmZ0U09yNnpCQnovQm5vUUFrZDRSWnJBcDdiCjMva2RnalRYTkVpdnVSR1BZblJKQ0lnNFgxVW1sM3QxY2V2Q2U3dm95NHVTMWEvMUVxK2hHbGxwYy9xL24vRnIKdHFCTXRDSEU5Rkdid0t6cjErNzdWQzBhSlNBT2puelZqb09NZ05YSFRPTXRTT3VVNE1sQ0QwOXU2cUFETjdGVApvaURHUDhXQm9SMXdRNDRZTGJRY2FJWnJiMXZ4TkQyWGEzc3k1TjVURGVNN1dEczU1dHlGT1pRNEF1allsRVVECjVNUnRtV2tVOG9sbk12eHExL1kzK1ZJMXM2SU5UYjhKVHlManRTSFJxSUovUlhRdk8xcVFNem10d2Q4RE1mUzkKRk4zUnE1WWljRzc2ellUZVF5bkdWc2RZOSs1eFc2RjViaDZpSkNiYk1JaE80QlV4U1pSVVdweGlnc2hMSkQxZApPbmY4NUxJTXE0by9odjdyOHBKZEt1V2diMENwN3JQR0E3SzlqckFXQTNmVm11NURXaDJPVkJIemNQVnpKa1hBCnkvaTNpZloyVFNTcEVid2paY0ZBUEdPeHRuajMyMnRQQzYvRnIzbFZDVDlmd1R2Q05zRW9UVlM2ZStaQi9ISEkKck9MRXl4MzBOV2ppVzFJcFM5d3A4TU9YUzFTMzhhNmM4eE1Od1dQMnJkb2VvbkVaejI2Z2dsQi9LY09HNmFVWgpmYmcyYndJREFRQUJvNElCY0RDQ0FXd3dnZ0ZUQmdOVkhSRUVnZ0ZLTUlJQlJvSU5LaTVsZUdGdGNHeGxMbU52CmJZSVVjbUZpWW1sMGJYRXVaWGhoYlhCc1pTNWpiMjJDRVhKbFpHbHpMbVY0WVcxd2JHVXVZMjl0Z2hOcWRYQjUKZEdWeUxtVjRZVzF3YkdVdVkyOXRnaE5xWlc1cmFXNXpMbVY0WVcxd2JHVXVZMjl0Z2c5M2QzY3VaWGhoYlhCcwpaUzVqYjIyQ0QyRndhUzVsZUdGdGNHeGxMbU52YllJT1pHSXVaWGhoYlhCc1pTNWpiMjJDRTNCbllXUnRhVzR1ClpYaGhiWEJzWlM1amIyMkNGbkJvY0cxNVlXUnRhVzR1WlhoaGJYQnNaUzVqYjIyQ0VtdHBZbUZ1WVM1bGVHRnQKY0d4bExtTnZiWUlPYkdJdVpYaGhiWEJzWlM1amIyMkNFbVJ2WTJ0bGNpNWxlR0Z0Y0d4bExtTnZiWUlPYXpndQpaWGhoYlhCc1pTNWpiMjJDRW5Od2JIVnVheTVsZUdGdGNHeGxMbU52YllJUmEyRm1hMkV1WlhoaGJYQnNaUzVqCmIyMkNEbk16TG1WNFlXMXdiR1V1WTI5dGh3Ui9BQUFCTUJNR0ExVWRKUVFNTUFvR0NDc0dBUVVGQndNQk1BMEcKQ1NxR1NJYjNEUUVCQ3dVQUE0SUNBUUFsRnFpRitoV2FEQmt2VmJLMnFia1JpVlpuQUFmcXh1YzVVV0oyd3QwQwppWnVkUVdaQnZEdmJ6ZTA0aUVMUjVyMHV1Y0phZ0p2REtDVm5sK0gxazNKTEVYcU5sUjRtVElYOCt4MTBKRWhCCmYxL3NWY3cwQXFoWXRYY290SzJvT2x4WnpZSDFDKzEydjk1aU9KVTRCeVNIZWsvRDdKczZBT2wxYkxUQVFwWjIKNTZkZUVEMmk4ZVNSeUtGVmNFLzAyTXZlN1JwR3AyTXY2ZFhRUmJJd2NuZ0dsUEtFdGdlbkJqQlBzQm4rdWkxMQprZUNGcExZSXVMWUg0QlNPajlmbkp5RU9pbW1TbnVFWUIrSDhJZEJXd2tPcXZnc0pCQWQ5cjRDYzJXSlpRbXRjCkUzT2lGQldCczlWWUVoL0FpNEY3WVd0bWxBU3JTcklvN3l2S3dQUTYzWEZlQ0pUZ0FBZkRWaWp3ZHN2M1NFMEQKS3I4VDNtQWJ4UnNyVmF4eTVEd1NmYTRZR0ZkU1F4ZHFSbC95YTdtcVkrek1JcmhpWVVxd0MwbzR0b1FoMXd5awpVQkZVVDAwRENUam4vZnErL2N1cUZoNG92RytkaDBxUmk3QVA3eXdyR05jc0VSUXBKWVh2R29RWjhmS25nTUM5CjZmbzNXaGIrdFlWVENzVk9Hb1p0emdpRG43RWhuamFDZHNzbUdQYTlIbzNoNFU5KzBkWHFHTzNDUEJGUUVaSlAKZHNtdEE2WmFUVWtYbFY1SzhoWStYeGlhV0Nha2FOU0dHOWcxTy95aHF5NVAwYm1PelQ3U2xXS2pnUTdESGl5WAp5aWRiZm5Da1Zoc2lsRmtaOUhnSXJtaHNROWFteGp5V2QwMFlnLzNsNGtIOTZ0UVdlc0VNMFdPendMYzhRazl1Ck5BPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo= tls.key: LS0tLS1CRUdJTiBSU0EgUFJJVkFURSBLRVktLS0tLQpNSUlKS1FJQkFBS0NBZ0VBdG1DOHJwQ0NlZjZOd0dHZTN2MkEzYUx2aXBSTElmbUp3MU9USVg2V0g1M0JtV3NWClNGeE40WWk2czZRTzk1ZU1kcVVDZmw5NnArblVQOWtmYjVDdTlBMUY2N3NuS1laMUtpZUxuSXJESHF6eC9sU1gKanYzTzZXcStsR2VvcFFnK3pCSXdLMUNtZ1FTWDdVanErc3dRYy93WjZFQUpIZUVXYXdLZTI5LzVIWUkwMXpSSQpyN2tSajJKMFNRaUlPRjlWSnBkN2RYSHJ3bnU3Nk11TGt0V3Y5Ukt2b1JwWmFYUDZ2NS94YTdhZ1RMUWh4UFJSCm04Q3M2OWZ1KzFRdEdpVWdEbzU4MVk2RGpJRFZ4MHpqTFVqcmxPREpRZzlQYnVxZ0F6ZXhVNklneGovRmdhRWQKY0VPT0dDMjBIR2lHYTI5YjhUUTlsMnQ3TXVUZVV3M2pPMWc3T2ViY2hUbVVPQUxvMkpSRkErVEViWmxwRlBLSgpaekw4YXRmMk4vbFNOYk9pRFUyL0NVOGk0N1VoMGFpQ2YwVjBMenRha0RNNXJjSGZBekgwdlJUZDBhdVdJbkJ1CitzMkUza01weGxiSFdQZnVjVnVoZVc0ZW9pUW0yekNJVHVBVk1VbVVWRnFjWW9MSVN5UTlYVHAzL09TeURLdUsKUDRiKzYvS1NYU3Jsb0c5QXFlNnp4Z095dlk2d0ZnTjMxWnJ1UTFvZGpsUVI4M0QxY3laRndNdjR0NG4yZGswawpxUkc4STJYQlFEeGpzYlo0OTl0clR3dXZ4YTk1VlFrL1g4RTd3amJCS0UxVXVudm1RZnh4eUt6aXhNc2Q5RFZvCjRsdFNLVXZjS2ZERGwwdFV0L0d1blBNVERjRmo5cTNhSHFKeEdjOXVvSUpRZnluRGh1bWxHWDI0Tm04Q0F3RUEKQVFLQ0FnQkxmM3hjWDJKRUVrYW9EMEZ2V2s0UWNqVHJqendURW5RZk1lZkVnOXl0dGViQkZmMDNlVTZjUUxmWgpTZDhRUytKUDh6czNDVnVEUzE4Y0YwdldLWFRqZnVNbEZOSy9jL1Bvd1hvZ0VhbDRkMnV1TjJLT1JTOTBuVVhMCnRhV3d1OXNUSzZ4WklnZnJmUFZQdTFIYkJNTUM0S2Z3NXlGZkJ5RDZwNWtQdUlZdDJ3cjQwNklMYkhlQ2ZlVloKbm5pVnJaRllhbmtuUTBPdnZQMHEvNmdGM3dQNlZnUHlreS9VWWJpNXZ3SjM3cUFwWUtCaUlpbnVhaktyWnpaOQpRSGx6UzA4Yjk0eGg4NTh0ZU9BR295T2dTWUdNbmdseW1WZnV1SjRJOXZNbmhnUS9UWUw3aUxEaEduWW1PRFZKClZWUGdBYmQwQUlaR3VxM0RnYzh2WHA1a29ML1RJMWsvSDlPMGRxK0J5VjVUTmxzWFJzR1cycTdWVHc2ZERUMzMKczNqRzVMRmJORlk0byszTlZlZnhvU3I5OEw2OWpoK2xOUFlVZGI5ZlZ2VXM0T2JGNDVkVXI5VkFENUl2clpXdQp2QzJ5Q3MwYllHQ3hmTmpod1BSelN5MnZVdVZhSTJDWEwvQklwSHpMMkNQYkJEL2V2dHQ5bWx2Uk9MNWgyVjJHCkJXOGFhUFVCQ0Mra2kzZDAxb2FsWjkzbXQ0YWtXTFIwemREWnNpZzdHeVlXeEFIVy9oZHdENTF6ajVnOERHK24KeUlWUEF6bWNubjZPMDBockI3T29wa1c0RWpOMUIvVWllZFcwbmFPVTQzTmxSQ1RYcU5mYS9nRUhHdzVWVlltMwpJdy9rcXVFcUU3bjhsckgxak54MmVHNVc3QktXRm5qaWp3VzJmdnR0UGJmL3h4MEtFUUtDQVFFQTRYdEJ1S2EwCnhUWXdvUGxEVnBmTTZuSm9Sa2hyNlNFMExGUjBpeEI0RXdYdUxLU1M2R2g3Ym9XVXNvUVNpY2ZUbGovNEhCZHYKWHpZTzV3dDNYRGd3NGxSWHc0WWFzUTRwQ0E5UFBTV1RvR0ZtTDhWZkpwSjd2bmNTVVlkVFZ3M1BjUk1COTZKUQpYdjhSdXM5bVByUkRZQVM4Tk5QTGlJYVdiZm4yYm1xWTRpME5vemxYeDI3ZFA1TkpLckNObVpsQnZJL0F0K3lZCmlQWDRiei9YYURibjVIVTI0R3M4WHp1SkRQK2tLTmQrRGZRUzFMc1RaVnNUd3lsakc1WktmWlhxMEladlQzcGIKT05WbnBtWWxDZDVkVnRDeUx6NFJsRzc5QkFtU2VRaHMzU242ejFFZElBcFlsb3kxcHlXNTR3N1R4M2RVRjJNdgp4UnlSV2graFl1TTlrd0tDQVFFQXp3LzZJejBtY1hiZFkweitBKzd3TVdzUCthdU5hb3NqWW0rdjArOWwrTFBUCmI2eGZVYno3R242QUJaaGZjeHFIekNobFd6LzVBMkJYMGltbGlNQzlaSkFXNDR1RUk4UE91cTlPYzNDdXRheVQKeGI0QXYvZUI5MWJ1dHBJUkJtMXpuY21GYVdyT3FpMzEzQmxvS0k3OGxUVHN3NHZtaGdOZ3lYY3NYK3ZVV2JzdApEU3pTVjJjNGhITXRyTGY0Y2lMNlF2RC80ZlVDWjh6dGpyaEtvdjNqOUJwa3RMNnR4dnNDdmFZNVpIclRNcTBFCnA1NVpRdlVmcnB6bThna0xZRU1xbktlcXltZnRib0h0OUE4Uk1aTjAyMER2bkdoblVaOFkvcGJIbFk3azlIR0oKc3duQ3hxKytCNHpGcTNOUFRoU1lNTE9oM3hVS1dqeEt3ZUVaRXNRTk5RS0NBUUVBdTZLL1lUTFJFWi96dmJGUQpHUm8vdXdXenduRDM0OHZ1eDhrTUpzRnd1cHZmeEtTN1g4MjZrWkYxMlV4UXhQbFdHUjFva2EvcXpUZUdGVHlVCmVsaUVUWVBVZU8vNi9FWUZYU0NvVndFVEpZNkg0ODhDVEczdnJlTVdpbVBydFhEWHBJZ2x4Zlg3bmVIeTFodEwKUVhqdTdGTmtieTJrblJzcXlhQU9NM3BmZVMvMnZsSzB1bENHcXlZYzUvcCtDMGplekZSd0VsNC8zUkdiU0xDKwp4NG1SVmFzNUhHNEFrbHRQeEZKa1FGeDdHSTk0c0RCeGhwSFJFMEk0cURkY0M4QWE1S1pLc0wvb2M1WWJKL3l1CmE5VHdwWk1NQklaSlNOVkhsZm1GTzFVSWlzOHBXU1p0NzBETTBaT01ndWpCRkxNOUJ5dEUvaVZiRmxPY25YdmUKNkJTa0l3S0NBUUFKbTZNdXVXcXNQeWk4cjlqbGs5Ty9aMGxoZTIxZmNUOWVGUEtpc2V3WVl6ZS9hYzh1ZXNkbwpEbENnY2RhVC83b25aZ1IxL0h6d2hDcnZESkdxeTg2OStOV25EMVU5VjV1akcvbFc3L2FiWlh1aDVGUWlsRGlLCm9wVUhFYllLaDArakZiUEVGWG1yZWVCN3F3NGpPNmRLd1I3dlgvRjliSEMwU0h4ZG94TENheVlIQTNwckpkWUEKaDF1cU5Rc3BPS2hHTE9xaXNIekJGa2c3cEIrS2VwOTJOemRQRDczK2lxMHc0YUt1SCtqbTVCSmdPTC9KbEpnNAp3UDBTWkFzTUYzSEZ2UjMyc0dYYkI5cGp4Y00xZXJNa2JWbnc5d004VFZhYWthS0hOUTg0cklBSU43NjYrM0trCjVRcFREMUd4dk5EbkNaN01QQ3l6elRKbTFxd1VLOWExQW9JQkFRQzROWUJOQ2diRk0yOHZNeW5URU1wWXFzbm8KMkloa0NGQ2xraXlOQVFMcWwyRFlnaTNhOG5ZU0p1c0hNYm1URzRZNTJkb003SFVraWZ5b0wzTUtFSHZJL2ZOKwpyeDJKZDM1R21zcm9TN2N3N2xvY0RRL2pvbk8zMHdzRkRJemM5UmFWUWZrUkJLVFVXY25NUHJ2d3ZhVWFITVZQCmdZVXNLejM3NXR3Y1F2SWVncm1LL0J4WmxVNWNieG1VdW5XOUNNRjMybndKdlJHTGN5V2RITzJ4OVZyaTljNUcKR0VpQ1NuaTRwenVxcFZMb1dxVUxjRWc4dnBOUnFJajdYY1VsL0lOVU9uZlF1YlRjSXZrUzNKT2tBRkw4UWhtUgp1YmFGNGxSbTdMR1lrYWw4UkF1UExtdXprb0EzR1B0VTZWWXg3ZkFiU3o1WmZ3NFgzYVJXdlZHZjRWRHoKLS0tLS1FTkQgUlNBIFBSSVZBVEUgS0VZLS0tLS0K kind: Secret metadata: creationTimestamp: "2018-12-18T22:20:18Z" name: tls-docker namespace: default resourceVersion: "82629" selfLink: /api/v1/namespaces/default/secrets/tls-docker uid: 19a91d16-0313-11e9-a7c9-525400275ad4 type: kubernetes.io/tls
559.214286
4,335
0.990037
f71fdb4068321d44c0ece97c3af6dbe939466e4a
417
yaml
YAML
config/rbac/privatecarequest_editor_role.yaml
salrashid123/gcp-caservice-cert-manager
f6a12d6a19c43cbeed8a6887ffc96bb95e37bb10
[ "Apache-2.0" ]
null
null
null
config/rbac/privatecarequest_editor_role.yaml
salrashid123/gcp-caservice-cert-manager
f6a12d6a19c43cbeed8a6887ffc96bb95e37bb10
[ "Apache-2.0" ]
null
null
null
config/rbac/privatecarequest_editor_role.yaml
salrashid123/gcp-caservice-cert-manager
f6a12d6a19c43cbeed8a6887ffc96bb95e37bb10
[ "Apache-2.0" ]
null
null
null
# permissions for end users to edit privatecarequests. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: privatecarequest-editor-role rules: - apiGroups: - privateca.google.com resources: - privatecarequests verbs: - create - delete - get - list - patch - update - watch - apiGroups: - privateca.google.com resources: - privatecarequests/status verbs: - get
16.68
54
0.71223
f7202aced3c72bcf42e9ba51ee854f6da479973b
1,925
yaml
YAML
prow/cluster/tide_deployment.yaml
adamwalach/test-infra-1
33ee3fca05e9183801d169a35fe531e5a8e76dd6
[ "Apache-2.0" ]
null
null
null
prow/cluster/tide_deployment.yaml
adamwalach/test-infra-1
33ee3fca05e9183801d169a35fe531e5a8e76dd6
[ "Apache-2.0" ]
null
null
null
prow/cluster/tide_deployment.yaml
adamwalach/test-infra-1
33ee3fca05e9183801d169a35fe531e5a8e76dd6
[ "Apache-2.0" ]
null
null
null
# Copyright 2017 The Kubernetes Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: namespace: default name: tide labels: app: tide spec: replicas: 1 # Do not scale up. strategy: type: Recreate selector: matchLabels: app: tide template: metadata: labels: app: tide spec: serviceAccountName: tide containers: - name: tide image: gcr.io/k8s-prow/tide:v20200225-55a0aacbd args: - --dry-run=false - --github-endpoint=http://ghproxy - --github-endpoint=https://api.github.com - --config-path=/etc/config/config.yaml - --job-config-path=/etc/job-config - --history-uri=gs://k8s-prow/tide-history.json - --status-path=gs://k8s-prow/tide-status-checkpoint.yaml ports: - name: http containerPort: 8888 volumeMounts: - name: oauth mountPath: /etc/github readOnly: true - name: config mountPath: /etc/config readOnly: true - name: job-config mountPath: /etc/job-config readOnly: true volumes: - name: oauth secret: secretName: oauth-token - name: config configMap: name: config - name: job-config configMap: name: job-config
27.898551
74
0.622857
f7204a209174ebef053ecfe4abc40b65ea3320e4
648
yaml
YAML
deploys/mxb.cc-server.configmap.yaml
mxbcc/mxb.cc-server
43b220fe3402abbc1dfe59b2db3cdd6492114555
[ "MIT" ]
null
null
null
deploys/mxb.cc-server.configmap.yaml
mxbcc/mxb.cc-server
43b220fe3402abbc1dfe59b2db3cdd6492114555
[ "MIT" ]
null
null
null
deploys/mxb.cc-server.configmap.yaml
mxbcc/mxb.cc-server
43b220fe3402abbc1dfe59b2db3cdd6492114555
[ "MIT" ]
null
null
null
apiVersion: v1 data: .env.production: | EXTERNAL_URL=https://mxb.cc MONGO_URI=mongodb://username:password@mongo-service:27017/database REDIS_HOST=redis-service SESSION_STORE=mongo NETEASE_PHONE= NETEASE_PASSWORD= NETEASE_COUNTRY_CODE=86 SING_USERNAME= SING_PASSWORD= MAILER_HOST=smtp.qq.com MAILER_USER= MAILER_PASS= MAILER_NAME=MXB ALI_ACCESS_KEY= ALI_SECRET_KEY= ALI_REGION=oss-cn-beijing ALI_BUCKET=mxbcc TENCENT_SECRET_ID= TENCENT_SECRET_KEY= CAPTCHA_APP_ID= CAPTCHA_SECRET_KEY= kind: ConfigMap metadata: name: mxb-server-configmap namespace: default
20.25
70
0.728395
f72052ce5ae7abcb08847b7c3aac25f8698c4692
8,418
yaml
YAML
tests/istio/istio-install/base/test_data/expected/~g_v1_configmap_istio-sidecar-injector.yaml
Klaven/manifests
b3f5b41780a01845619884e638f4f6c9183d8fef
[ "Apache-2.0" ]
1
2020-07-29T10:00:13.000Z
2020-07-29T10:00:13.000Z
tests/istio/istio-install/base/test_data/expected/~g_v1_configmap_istio-sidecar-injector.yaml
Klaven/manifests
b3f5b41780a01845619884e638f4f6c9183d8fef
[ "Apache-2.0" ]
5
2020-04-14T16:34:34.000Z
2020-08-04T23:49:54.000Z
tests/istio/istio-install/base/test_data/expected/~g_v1_configmap_istio-sidecar-injector.yaml
Klaven/manifests
b3f5b41780a01845619884e638f4f6c9183d8fef
[ "Apache-2.0" ]
3
2020-03-31T15:40:32.000Z
2020-12-12T18:26:55.000Z
apiVersion: v1 data: config: "policy: enabled\ntemplate: |-\n rewriteAppHTTPProbe: false\n initContainers:\n \ [[ if ne (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) \"NONE\" ]]\n - name: istio-init\n image: \"docker.io/istio/proxy_init:1.1.6\"\n \ args:\n - \"-p\"\n - [[ .MeshConfig.ProxyListenPort ]]\n - \"-u\"\n \ - 1337\n - \"-m\"\n - [[ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode ]]\n - \"-i\"\n - \"[[ annotation .ObjectMeta `traffic.sidecar.istio.io/includeOutboundIPRanges` \"*\" ]]\"\n - \"-x\"\n \ - \"[[ annotation .ObjectMeta `traffic.sidecar.istio.io/excludeOutboundIPRanges` \ \"\" ]]\"\n - \"-b\"\n - \"[[ annotation .ObjectMeta `traffic.sidecar.istio.io/includeInboundPorts` (includeInboundPorts .Spec.Containers) ]]\"\n - \"-d\"\n - \"[[ excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` 15020 ) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` \"\" ) ]]\"\n [[ if (isset .ObjectMeta.Annotations `traffic.sidecar.istio.io/kubevirtInterfaces`) -]]\n - \"-k\"\n - \"[[ index .ObjectMeta.Annotations `traffic.sidecar.istio.io/kubevirtInterfaces` ]]\"\n [[ end -]]\n imagePullPolicy: IfNotPresent\n resources:\n requests:\n \ cpu: 10m\n memory: 10Mi\n limits:\n cpu: 100m\n memory: 50Mi\n securityContext:\n runAsUser: 0\n runAsNonRoot: false\n capabilities:\n \ add:\n - NET_ADMIN\n restartPolicy: Always\n [[ end -]]\n containers:\n \ - name: istio-proxy\n image: [[ annotation .ObjectMeta `sidecar.istio.io/proxyImage` \ \"docker.io/istio/proxyv2:1.1.6\" ]]\n ports:\n - containerPort: 15090\n \ protocol: TCP\n name: http-envoy-prom\n args:\n - proxy\n - sidecar\n - --domain\n - $(POD_NAMESPACE).svc.cluster.local\n - --configPath\n \ - [[ .ProxyConfig.ConfigPath ]]\n - --binaryPath\n - [[ .ProxyConfig.BinaryPath ]]\n - --serviceCluster\n [[ if ne \"\" (index .ObjectMeta.Labels \"app\") -]]\n - [[ index .ObjectMeta.Labels \"app\" ]].$(POD_NAMESPACE)\n [[ else -]]\n - [[ valueOrDefault .DeploymentMeta.Name \"istio-proxy\" ]].[[ valueOrDefault .DeploymentMeta.Namespace \"default\" ]]\n [[ end -]]\n - --drainDuration\n \ - [[ formatDuration .ProxyConfig.DrainDuration ]]\n - --parentShutdownDuration\n \ - [[ formatDuration .ProxyConfig.ParentShutdownDuration ]]\n - --discoveryAddress\n \ - [[ annotation .ObjectMeta `sidecar.istio.io/discoveryAddress` .ProxyConfig.DiscoveryAddress ]]\n - --zipkinAddress\n - [[ .ProxyConfig.GetTracing.GetZipkin.GetAddress ]]\n - --connectTimeout\n - [[ formatDuration .ProxyConfig.ConnectTimeout ]]\n - --proxyAdminPort\n - [[ .ProxyConfig.ProxyAdminPort ]]\n [[ if gt .ProxyConfig.Concurrency 0 -]]\n - --concurrency\n - [[ .ProxyConfig.Concurrency ]]\n [[ end -]]\n - --controlPlaneAuthPolicy\n - [[ annotation .ObjectMeta `sidecar.istio.io/controlPlaneAuthPolicy` .ProxyConfig.ControlPlaneAuthPolicy ]]\n [[- if (ne (annotation .ObjectMeta `status.sidecar.istio.io/port` 15020 ) \"0\") ]]\n - --statusPort\n - [[ annotation .ObjectMeta `status.sidecar.istio.io/port` \ 15020 ]]\n - --applicationPorts\n - \"[[ annotation .ObjectMeta `readiness.status.sidecar.istio.io/applicationPorts` (applicationPorts .Spec.Containers) ]]\"\n [[- end ]]\n env:\n - name: POD_NAME\n valueFrom:\n fieldRef:\n fieldPath: metadata.name\n \ - name: POD_NAMESPACE\n valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n - name: INSTANCE_IP\n valueFrom:\n fieldRef:\n \ fieldPath: status.podIP\n \n - name: ISTIO_META_POD_NAME\n valueFrom:\n \ fieldRef:\n fieldPath: metadata.name\n - name: ISTIO_META_CONFIG_NAMESPACE\n \ valueFrom:\n fieldRef:\n fieldPath: metadata.namespace\n \ - name: ISTIO_META_INTERCEPTION_MODE\n value: [[ or (index .ObjectMeta.Annotations \"sidecar.istio.io/interceptionMode\") .ProxyConfig.InterceptionMode.String ]]\n \ [[ if .ObjectMeta.Annotations ]]\n - name: ISTIO_METAJSON_ANNOTATIONS\n \ value: |\n [[ toJSON .ObjectMeta.Annotations ]]\n [[ end ]]\n [[ if .ObjectMeta.Labels ]]\n - name: ISTIO_METAJSON_LABELS\n value: |\n [[ toJSON .ObjectMeta.Labels ]]\n [[ end ]]\n [[- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) ]]\n - name: ISTIO_BOOTSTRAP_OVERRIDE\n value: \"/etc/istio/custom-bootstrap/custom_bootstrap.json\"\n \ [[- end ]]\n imagePullPolicy: IfNotPresent\n [[ if (ne (annotation .ObjectMeta `status.sidecar.istio.io/port` 15020 ) \"0\") ]]\n readinessProbe:\n httpGet:\n \ path: /healthz/ready\n port: [[ annotation .ObjectMeta `status.sidecar.istio.io/port` \ 15020 ]]\n initialDelaySeconds: [[ annotation .ObjectMeta `readiness.status.sidecar.istio.io/initialDelaySeconds` \ 1 ]]\n periodSeconds: [[ annotation .ObjectMeta `readiness.status.sidecar.istio.io/periodSeconds` \ 2 ]]\n failureThreshold: [[ annotation .ObjectMeta `readiness.status.sidecar.istio.io/failureThreshold` \ 30 ]]\n [[ end -]]securityContext:\n readOnlyRootFilesystem: true\n \ [[ if eq (annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode) \"TPROXY\" -]]\n capabilities:\n add:\n - NET_ADMIN\n runAsGroup: 1337\n [[ else -]]\n \n runAsUser: 1337\n [[- end ]]\n resources:\n \ [[ if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) -]]\n requests:\n \ [[ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) -]]\n \ cpu: \"[[ index .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU` ]]\"\n \ [[ end ]]\n [[ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) -]]\n memory: \"[[ index .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory` ]]\"\n [[ end ]]\n [[ else -]]\n limits:\n cpu: 2000m\n \ memory: 128Mi\n requests:\n cpu: 10m\n memory: 40Mi\n \ \n [[ end -]]\n volumeMounts:\n [[- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) ]]\n - mountPath: /etc/istio/custom-bootstrap\n \ name: custom-bootstrap-volume\n [[- end ]]\n - mountPath: /etc/istio/proxy\n \ name: istio-envoy\n - mountPath: /etc/certs/\n name: istio-certs\n \ readOnly: true\n [[- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount` ]]\n [[ range $index, $value := fromJSON (index .ObjectMeta.Annotations `sidecar.istio.io/userVolumeMount`) ]]\n - name: \"[[ $index ]]\"\n [[ toYaml $value | indent 4 ]]\n [[ end ]]\n [[- end ]]\n volumes:\n [[- if (isset .ObjectMeta.Annotations `sidecar.istio.io/bootstrapOverride`) ]]\n - name: custom-bootstrap-volume\n \ configMap:\n name: [[ annotation .ObjectMeta `sidecar.istio.io/bootstrapOverride` `` ]]\n [[- end ]]\n - emptyDir:\n medium: Memory\n name: istio-envoy\n \ - name: istio-certs\n secret:\n optional: true\n [[ if eq .Spec.ServiceAccountName \"\" -]]\n secretName: istio.default\n [[ else -]]\n secretName: [[ printf \"istio.%s\" .Spec.ServiceAccountName ]]\n [[ end -]]\n [[- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolume` ]]\n [[ range $index, $value := fromJSON (index .ObjectMeta.Annotations `sidecar.istio.io/userVolume`) ]]\n - name: \"[[ $index ]]\"\n [[ toYaml $value | indent 2 ]]\n [[ end ]]\n [[ end ]]" kind: ConfigMap metadata: labels: app: istio chart: istio heritage: Tiller istio: sidecar-injector release: istio name: istio-sidecar-injector namespace: kubeflow
81.728155
129
0.604894
f720a4613f3d5cac283389626cefd7eb1fcefafd
409
yaml
YAML
config/rbac/replicasettemplate_editor_role.yaml
d-enk/tarantool-operator
9fbc0bb9e77eb891893f3c48340382671023584a
[ "BSD-2-Clause" ]
null
null
null
config/rbac/replicasettemplate_editor_role.yaml
d-enk/tarantool-operator
9fbc0bb9e77eb891893f3c48340382671023584a
[ "BSD-2-Clause" ]
1
2019-08-26T11:19:32.000Z
2019-08-26T11:19:32.000Z
config/rbac/replicasettemplate_editor_role.yaml
d-enk/tarantool-operator
9fbc0bb9e77eb891893f3c48340382671023584a
[ "BSD-2-Clause" ]
2
2019-08-26T11:17:36.000Z
2020-12-03T08:00:37.000Z
# permissions for end users to edit replicasettemplates. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: replicasettemplate-editor-role rules: - apiGroups: - tarantool.io resources: - replicasettemplates verbs: - create - delete - get - list - patch - update - watch - apiGroups: - tarantool.io resources: - replicasettemplates/status verbs: - get
16.36
56
0.711491
f720adc4ab2d3d76d02eceec39feebba589e24d0
341
yaml
YAML
k8s/openldap/06-openldap-service.yaml
sensorgraph/openldap
ec44a71c32344b82a345f54fc4f75cbbd0f12b79
[ "MIT" ]
1
2020-02-04T15:03:13.000Z
2020-02-04T15:03:13.000Z
k8s/openldap/06-openldap-service.yaml
sensorgraph/openldap
ec44a71c32344b82a345f54fc4f75cbbd0f12b79
[ "MIT" ]
null
null
null
k8s/openldap/06-openldap-service.yaml
sensorgraph/openldap
ec44a71c32344b82a345f54fc4f75cbbd0f12b79
[ "MIT" ]
null
null
null
# http://localhost:8001/api/v1/namespaces/default/services/https:phpldapadmin:443/proxy/ apiVersion: v1 kind: Service metadata: name: openldap labels: app: openldap spec: selector: app: openldap type: ClusterIP ports: - name: notsecure port: 389 targetPort: 389 - name: secure port: 636 targetPort: 636
17.947368
88
0.692082
f720fb51b2bc63733c970be2649da6b424716798
250
yaml
YAML
config/prometheus/service.yaml
dkeohane/managed-node-metadata-operator
59b0fa8949fbd7531c08f4530d4628c7e75e3a1e
[ "Apache-2.0" ]
null
null
null
config/prometheus/service.yaml
dkeohane/managed-node-metadata-operator
59b0fa8949fbd7531c08f4530d4628c7e75e3a1e
[ "Apache-2.0" ]
21
2022-03-09T13:09:44.000Z
2022-03-31T14:13:18.000Z
config/prometheus/service.yaml
dkeohane/managed-node-metadata-operator
59b0fa8949fbd7531c08f4530d4628c7e75e3a1e
[ "Apache-2.0" ]
4
2022-02-21T15:25:27.000Z
2022-03-24T21:07:32.000Z
apiVersion: v1 kind: Service metadata: labels: control-plane: controller-manager name: metrics-service namespace: system spec: ports: - name: metrics port: 8080 targetPort: 8080 selector: control-plane: controller-manager
16.666667
37
0.712
f7213c4bade99f0fc5ebd1f2fbbad970af0e3321
174
yaml
YAML
playground/5-pvc-mysql.yaml
SAAMalusare/kubernetes
5260e80a7d009a9abf3adcbc699aced0d7070b88
[ "Unlicense" ]
1
2020-12-11T11:16:05.000Z
2020-12-11T11:16:05.000Z
playground/5-pvc-mysql.yaml
SAAMalusare/kubernetes
5260e80a7d009a9abf3adcbc699aced0d7070b88
[ "Unlicense" ]
null
null
null
playground/5-pvc-mysql.yaml
SAAMalusare/kubernetes
5260e80a7d009a9abf3adcbc699aced0d7070b88
[ "Unlicense" ]
1
2020-05-22T06:59:46.000Z
2020-05-22T06:59:46.000Z
apiVersion: v1 kind: PersistentVolumeClaim metadata: name: mysql-persistent-storage spec: accessModes: - ReadWriteMany resources: requests: storage: 1Gi
15.818182
32
0.724138
f7215304e5978e2f5a6242d83c6dffe97d981317
1,268
yaml
YAML
fpga/configMap.yaml
fiqazrie/edgecontroller
9f132b76636e013928e861de2aed496234005562
[ "Apache-2.0" ]
null
null
null
fpga/configMap.yaml
fiqazrie/edgecontroller
9f132b76636e013928e861de2aed496234005562
[ "Apache-2.0" ]
13
2021-03-10T17:46:59.000Z
2022-02-27T04:32:52.000Z
fpga/configMap.yaml
aiyamayaa/edgecontroller
2f51794fdb73005d89d42acd6f57cd6f1a439651
[ "Apache-2.0" ]
null
null
null
# SPDX-License-Identifier: Apache-2.0 # Copyright (c) 2019 Intel Corporation apiVersion: v1 kind: ConfigMap metadata: name: sriovdp-config namespace: kube-system data: config.json: | { "resourceList": [{ "resourceName": "intel_sriov_netdevice", "selectors": { "vendors": ["8086"], "devices": ["154c", "10ed"], "drivers": ["i40evf", "ixgbevf"] } }, { "resourceName": "intel_sriov_dpdk", "selectors": { "vendors": ["8086"], "devices": ["154c", "10ed"], "drivers": ["igb_uio"] } }, { "resourceName": "intel_fec_lte", "selectors": { "vendors": ["1172"], "devices": ["5050"], "drivers": ["igb_uio"] } }, { "resourceName": "intel_fec_5g", "selectors": { "vendors": ["8086"], "devices": ["0d90"], "drivers": ["igb_uio"] } } ] }
27.565217
56
0.361199
f72172e015738c23247987ddb70284b347d8758b
350
yaml
YAML
12_configmap/pod.yaml
ManuStoessel/kubernetes-from-zero-to-hero
6b8a1fa049cda74b890d148a8ca067e2ac0768b7
[ "Apache-2.0" ]
2
2022-03-20T22:33:52.000Z
2022-03-21T11:04:37.000Z
12_configmap/pod.yaml
ManuStoessel/kubernetes-from-zero-to-hero
6b8a1fa049cda74b890d148a8ca067e2ac0768b7
[ "Apache-2.0" ]
null
null
null
12_configmap/pod.yaml
ManuStoessel/kubernetes-from-zero-to-hero
6b8a1fa049cda74b890d148a8ca067e2ac0768b7
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: my-pod spec: containers: - name: busybox image: busybox:1.34.1 command: - /bin/sh - -c - "echo $MY_ENV_VAR && sleep 99d" env: - name: MY_ENV_VAR valueFrom: configMapKeyRef: key: a-key name: a-configmap
19.444444
41
0.497143
f721b3245ed493d7289ecffdd3d015613bf97c59
779
yaml
YAML
tests/dns-test.yaml
neocode24/openstack-helm
09b453e4888bb954423c2562a5e864a7799e3b78
[ "Apache-2.0" ]
363
2017-04-11T18:26:32.000Z
2022-03-27T18:57:06.000Z
tests/dns-test.yaml
neocode24/openstack-helm
09b453e4888bb954423c2562a5e864a7799e3b78
[ "Apache-2.0" ]
7
2017-04-20T15:13:21.000Z
2022-02-16T02:29:57.000Z
tests/dns-test.yaml
neocode24/openstack-helm
09b453e4888bb954423c2562a5e864a7799e3b78
[ "Apache-2.0" ]
223
2017-04-11T20:35:38.000Z
2022-03-24T21:26:36.000Z
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: v1 kind: Pod metadata: name: dns-test namespace: kube-system spec: containers: - image: busybox command: - sleep - "3600" imagePullPolicy: IfNotPresent name: busybox restartPolicy: Always
28.851852
74
0.734275
f721d0b26a10bf877f0e613a6c20158824c5f06e
2,172
yaml
YAML
config/prow/cluster/statusreconciler_deployment.yaml
cchengleo/test-infra
92dc2820708fe3edb6509e5018736d16139a60e0
[ "Apache-2.0" ]
null
null
null
config/prow/cluster/statusreconciler_deployment.yaml
cchengleo/test-infra
92dc2820708fe3edb6509e5018736d16139a60e0
[ "Apache-2.0" ]
null
null
null
config/prow/cluster/statusreconciler_deployment.yaml
cchengleo/test-infra
92dc2820708fe3edb6509e5018736d16139a60e0
[ "Apache-2.0" ]
null
null
null
# Copyright 2016 The Kubernetes Authors All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: Deployment metadata: namespace: default name: statusreconciler labels: app: statusreconciler spec: replicas: 1 selector: matchLabels: app: statusreconciler template: metadata: labels: app: statusreconciler spec: serviceAccountName: statusreconciler terminationGracePeriodSeconds: 180 containers: - name: statusreconciler image: gcr.io/k8s-prow/status-reconciler:v20211014-7ca1952a94 imagePullPolicy: Always args: - --dry-run=false - --continue-on-error=true - --plugin-config=/etc/plugins/plugins.yaml - --config-path=/etc/config/config.yaml - --github-token-path=/etc/github/oauth - --github-endpoint=http://ghproxy - --github-endpoint=https://api.github.com - --job-config-path=/etc/job-config - --denylist=kubernetes/kubernetes volumeMounts: - name: oauth mountPath: /etc/github readOnly: true - name: config mountPath: /etc/config readOnly: true - name: job-config mountPath: /etc/job-config readOnly: true - name: plugins mountPath: /etc/plugins readOnly: true volumes: - name: oauth secret: secretName: oauth-token - name: config configMap: name: config - name: job-config configMap: name: job-config - name: plugins configMap: name: plugins
29.351351
74
0.635359
f722318b8a5eb91df09a5053eae5a2e906ecbf41
144
yaml
YAML
built-in-references/Kubernetes/perf/violations/violation5718.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation5718.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation5718.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: image-demo-5718 spec: containers: - name: nginx image: nginx #ritaacr.azurecr.io/nginx:latest
18
49
0.722222
f722d6a2096e5be5843d99479f03c012ebd19f85
745
yaml
YAML
manifests/deis-slugrunner.yaml
arschles/deis-slugrunner
2be1b0fcc8c9067c9c494cff9aff889b88ead27b
[ "Apache-2.0" ]
null
null
null
manifests/deis-slugrunner.yaml
arschles/deis-slugrunner
2be1b0fcc8c9067c9c494cff9aff889b88ead27b
[ "Apache-2.0" ]
null
null
null
manifests/deis-slugrunner.yaml
arschles/deis-slugrunner
2be1b0fcc8c9067c9c494cff9aff889b88ead27b
[ "Apache-2.0" ]
null
null
null
# A debugging utility for testing Minio from within k8s. apiVersion: v1 kind: Pod metadata: name: deis-slugrunner labels: heritage: deis version: 2015-sept spec: restartPolicy: Never containers: - name: deis-slugrunner imagePullPolicy: Always image: smothiki/slugrunner:4 args: - "start" - "web" env: - name: PORT value: "5000" - name: DEBUG value: "1" - name: SLUG_URL value: "https://s3.amazonaws.com/mydaffa/myslug.tgz" volumeMounts: - name: object-store mountPath: /var/run/secrets/object/store readOnly: true volumes: - name: object-store secret: secretName: object-store
22.575758
62
0.587919
f7233ee876c3cf880075de7270daed2dc0a59a67
384
yaml
YAML
rc-file.yaml
farahabdi/amalexpress
9f748317d5ac7e33f66d8eed38a0d264b0e19167
[ "Apache-2.0" ]
null
null
null
rc-file.yaml
farahabdi/amalexpress
9f748317d5ac7e33f66d8eed38a0d264b0e19167
[ "Apache-2.0" ]
null
null
null
rc-file.yaml
farahabdi/amalexpress
9f748317d5ac7e33f66d8eed38a0d264b0e19167
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: ReplicationController metadata: name: go-server-rc spec: replicas: 3 selector: name: go-server version: v8 template: metadata: labels: name: go-server version: v8 spec: containers: - name: go-server image: gcr.io/pragmatic-mote-207921/amal-img:46d49ab ports: - containerPort: 5000
18.285714
60
0.611979
f723729fdee95b620744620980ff17ce8c96c656
59,613
yaml
YAML
legacy/charts/vela-core-legacy/crds/core.oam.dev_definitionrevisions.yaml
whichxjy/kubevela
b3014c2f626e9f454ab08321f756da8b80879df2
[ "Apache-2.0" ]
null
null
null
legacy/charts/vela-core-legacy/crds/core.oam.dev_definitionrevisions.yaml
whichxjy/kubevela
b3014c2f626e9f454ab08321f756da8b80879df2
[ "Apache-2.0" ]
2
2021-10-15T04:37:34.000Z
2021-11-12T08:50:26.000Z
legacy/charts/vela-core-legacy/crds/core.oam.dev_definitionrevisions.yaml
whichxjy/kubevela
b3014c2f626e9f454ab08321f756da8b80879df2
[ "Apache-2.0" ]
null
null
null
--- apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: controller-gen.kubebuilder.io/version: v0.6.2 name: definitionrevisions.core.oam.dev spec: group: core.oam.dev names: categories: - oam kind: DefinitionRevision listKind: DefinitionRevisionList plural: definitionrevisions shortNames: - defrev singular: definitionrevision scope: Namespaced versions: - additionalPrinterColumns: - jsonPath: .spec.revision name: REVISION type: integer - jsonPath: .spec.revisionHash name: HASH type: string - jsonPath: .spec.definitionType name: TYPE type: string name: v1beta1 schema: openAPIV3Schema: description: DefinitionRevision is the Schema for the DefinitionRevision API properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: type: object spec: description: DefinitionRevisionSpec is the spec of DefinitionRevision properties: componentDefinition: description: ComponentDefinition records the snapshot of the created/modified ComponentDefinition properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: properties: annotations: additionalProperties: type: string type: object finalizers: items: type: string type: array labels: additionalProperties: type: string type: object name: type: string namespace: type: string type: object spec: description: ComponentDefinitionSpec defines the desired state of ComponentDefinition properties: childResourceKinds: description: ChildResourceKinds are the list of GVK of the child resources this workload generates items: description: A ChildResourceKind defines a child Kubernetes resource kind with a selector properties: apiVersion: description: APIVersion of the child resource type: string kind: description: Kind of the child resource type: string selector: additionalProperties: type: string description: Selector to select the child resources that the workload wants to expose to traits type: object required: - apiVersion - kind type: object type: array extension: description: Extension is used for extension needs by OAM platform builders type: object podSpecPath: description: PodSpecPath indicates where/if this workload has K8s podSpec field if one workload has podSpec, trait can do lot's of assumption such as port, env, volume fields. type: string revisionLabel: description: RevisionLabel indicates which label for underlying resources(e.g. pods) of this workload can be used by trait to create resource selectors(e.g. label selector for pods). type: string schematic: description: Schematic defines the data format and template of the encapsulation of the workload properties: cue: description: CUE defines the encapsulation in CUE format properties: template: description: Template defines the abstraction template data of the capability, it will replace the old CUE template in extension field. Template is a required field if CUE is defined in Capability Definition. type: string required: - template type: object helm: description: A Helm represents resources used by a Helm module properties: release: description: Release records a Helm release used by a Helm module workload. type: object repository: description: HelmRelease records a Helm repository used by a Helm module workload. type: object required: - release - repository type: object kube: description: Kube defines the encapsulation in raw Kubernetes resource format properties: parameters: description: Parameters defines configurable parameters items: description: A KubeParameter defines a configurable parameter of a component. properties: description: description: Description of this parameter. type: string fieldPaths: description: "FieldPaths specifies an array of fields within this workload that will be overwritten by the value of this parameter. \tAll fields must be of the same type. Fields are specified as JSON field paths without a leading dot, for example 'spec.replicas'." items: type: string type: array name: description: Name of this parameter type: string required: description: Required specifies whether or not a value for this parameter must be supplied when authoring an Application. type: boolean type: description: 'ValueType indicates the type of the parameter value, and only supports basic data types: string, number, boolean.' enum: - string - number - boolean type: string required: - fieldPaths - name - type type: object type: array template: description: Template defines the raw Kubernetes resource type: object required: - template type: object terraform: description: Terraform is the struct to describe cloud resources managed by Hashicorp Terraform properties: configuration: description: Configuration is Terraform Configuration type: string path: description: Path is the sub-directory of remote git repository. It's valid when remote is set type: string providerRef: description: ProviderReference specifies the reference to Provider properties: name: description: Name of the referenced object. type: string namespace: default: default description: Namespace of the secret. type: string required: - name type: object type: default: hcl description: Type specifies which Terraform configuration it is, HCL or JSON syntax enum: - hcl - json - remote type: string required: - configuration type: object type: object status: description: Status defines the custom health policy and status message for workload properties: customStatus: description: CustomStatus defines the custom status message that could display to user type: string healthPolicy: description: HealthPolicy defines the health check policy for the abstraction type: string type: object workload: description: Workload is a workload type descriptor properties: definition: description: Definition mutually exclusive to workload.type, a embedded WorkloadDefinition properties: apiVersion: type: string kind: type: string required: - apiVersion - kind type: object type: description: Type ref to a WorkloadDefinition via name type: string type: object required: - workload type: object status: description: ComponentDefinitionStatus is the status of ComponentDefinition properties: conditions: description: Conditions of the resource. items: description: A Condition that may apply to a resource. properties: lastTransitionTime: description: LastTransitionTime is the last time this condition transitioned from one status to another. format: date-time type: string message: description: A Message containing details about this condition's last transition from one status to another, if any. type: string reason: description: A Reason for this condition's last transition from one status to another. type: string status: description: Status of this condition; is it currently True, False, or Unknown? type: string type: description: Type of this condition. At most one of each condition type may apply to a resource at any point in time. type: string required: - lastTransitionTime - reason - status - type type: object type: array configMapRef: description: ConfigMapRef refer to a ConfigMap which contains OpenAPI V3 JSON schema of Component parameters. type: string latestRevision: description: LatestRevision of the component definition properties: name: type: string revision: format: int64 type: integer revisionHash: description: RevisionHash record the hash value of the spec of ApplicationRevision object. type: string required: - name - revision type: object type: object type: object definitionType: description: DefinitionType enum: - Component - Trait - Policy - WorkflowStep type: string policyDefinition: description: PolicyDefinition records the snapshot of the created/modified PolicyDefinition properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: properties: annotations: additionalProperties: type: string type: object finalizers: items: type: string type: array labels: additionalProperties: type: string type: object name: type: string namespace: type: string type: object spec: description: PolicyDefinitionSpec defines the desired state of PolicyDefinition properties: definitionRef: description: Reference to the CustomResourceDefinition that defines this trait kind. properties: name: description: Name of the referenced CustomResourceDefinition. type: string version: description: Version indicate which version should be used if CRD has multiple versions by default it will use the first one if not specified type: string required: - name type: object manageHealthCheck: description: ManageHealthCheck means the policy will handle health checking and skip application controller built-in health checking. type: boolean schematic: description: Schematic defines the data format and template of the encapsulation of the policy definition properties: cue: description: CUE defines the encapsulation in CUE format properties: template: description: Template defines the abstraction template data of the capability, it will replace the old CUE template in extension field. Template is a required field if CUE is defined in Capability Definition. type: string required: - template type: object helm: description: A Helm represents resources used by a Helm module properties: release: description: Release records a Helm release used by a Helm module workload. type: object repository: description: HelmRelease records a Helm repository used by a Helm module workload. type: object required: - release - repository type: object kube: description: Kube defines the encapsulation in raw Kubernetes resource format properties: parameters: description: Parameters defines configurable parameters items: description: A KubeParameter defines a configurable parameter of a component. properties: description: description: Description of this parameter. type: string fieldPaths: description: "FieldPaths specifies an array of fields within this workload that will be overwritten by the value of this parameter. \tAll fields must be of the same type. Fields are specified as JSON field paths without a leading dot, for example 'spec.replicas'." items: type: string type: array name: description: Name of this parameter type: string required: description: Required specifies whether or not a value for this parameter must be supplied when authoring an Application. type: boolean type: description: 'ValueType indicates the type of the parameter value, and only supports basic data types: string, number, boolean.' enum: - string - number - boolean type: string required: - fieldPaths - name - type type: object type: array template: description: Template defines the raw Kubernetes resource type: object required: - template type: object terraform: description: Terraform is the struct to describe cloud resources managed by Hashicorp Terraform properties: configuration: description: Configuration is Terraform Configuration type: string path: description: Path is the sub-directory of remote git repository. It's valid when remote is set type: string providerRef: description: ProviderReference specifies the reference to Provider properties: name: description: Name of the referenced object. type: string namespace: default: default description: Namespace of the secret. type: string required: - name type: object type: default: hcl description: Type specifies which Terraform configuration it is, HCL or JSON syntax enum: - hcl - json - remote type: string required: - configuration type: object type: object type: object status: description: PolicyDefinitionStatus is the status of PolicyDefinition properties: conditions: description: Conditions of the resource. items: description: A Condition that may apply to a resource. properties: lastTransitionTime: description: LastTransitionTime is the last time this condition transitioned from one status to another. format: date-time type: string message: description: A Message containing details about this condition's last transition from one status to another, if any. type: string reason: description: A Reason for this condition's last transition from one status to another. type: string status: description: Status of this condition; is it currently True, False, or Unknown? type: string type: description: Type of this condition. At most one of each condition type may apply to a resource at any point in time. type: string required: - lastTransitionTime - reason - status - type type: object type: array latestRevision: description: LatestRevision of the component definition properties: name: type: string revision: format: int64 type: integer revisionHash: description: RevisionHash record the hash value of the spec of ApplicationRevision object. type: string required: - name - revision type: object type: object type: object revision: description: Revision record revision number of DefinitionRevision format: int64 type: integer revisionHash: description: RevisionHash record the hash value of the spec of DefinitionRevision object. type: string traitDefinition: description: TraitDefinition records the snapshot of the created/modified TraitDefinition properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: properties: annotations: additionalProperties: type: string type: object finalizers: items: type: string type: array labels: additionalProperties: type: string type: object name: type: string namespace: type: string type: object spec: description: A TraitDefinitionSpec defines the desired state of a TraitDefinition. properties: appliesToWorkloads: description: AppliesToWorkloads specifies the list of workload kinds this trait applies to. Workload kinds are specified in kind.group/version format, e.g. server.core.oam.dev/v1alpha2. Traits that omit this field apply to all workload kinds. items: type: string type: array conflictsWith: description: 'ConflictsWith specifies the list of traits(CRD name, Definition name, CRD group) which could not apply to the same workloads with this trait. Traits that omit this field can work with any other traits. Example rules: "service" # Trait definition name "services.k8s.io" # API resource/crd name "*.networking.k8s.io" # API group "labelSelector:foo=bar" # label selector labelSelector format: https://pkg.go.dev/k8s.io/apimachinery/pkg/labels#Parse' items: type: string type: array definitionRef: description: Reference to the CustomResourceDefinition that defines this trait kind. properties: name: description: Name of the referenced CustomResourceDefinition. type: string version: description: Version indicate which version should be used if CRD has multiple versions by default it will use the first one if not specified type: string required: - name type: object extension: description: Extension is used for extension needs by OAM platform builders type: object manageWorkload: description: ManageWorkload defines the trait would be responsible for creating the workload type: boolean podDisruptive: description: PodDisruptive specifies whether using the trait will cause the pod to restart or not. type: boolean revisionEnabled: description: Revision indicates whether a trait is aware of component revision type: boolean schematic: description: Schematic defines the data format and template of the encapsulation of the trait properties: cue: description: CUE defines the encapsulation in CUE format properties: template: description: Template defines the abstraction template data of the capability, it will replace the old CUE template in extension field. Template is a required field if CUE is defined in Capability Definition. type: string required: - template type: object helm: description: A Helm represents resources used by a Helm module properties: release: description: Release records a Helm release used by a Helm module workload. type: object repository: description: HelmRelease records a Helm repository used by a Helm module workload. type: object required: - release - repository type: object kube: description: Kube defines the encapsulation in raw Kubernetes resource format properties: parameters: description: Parameters defines configurable parameters items: description: A KubeParameter defines a configurable parameter of a component. properties: description: description: Description of this parameter. type: string fieldPaths: description: "FieldPaths specifies an array of fields within this workload that will be overwritten by the value of this parameter. \tAll fields must be of the same type. Fields are specified as JSON field paths without a leading dot, for example 'spec.replicas'." items: type: string type: array name: description: Name of this parameter type: string required: description: Required specifies whether or not a value for this parameter must be supplied when authoring an Application. type: boolean type: description: 'ValueType indicates the type of the parameter value, and only supports basic data types: string, number, boolean.' enum: - string - number - boolean type: string required: - fieldPaths - name - type type: object type: array template: description: Template defines the raw Kubernetes resource type: object required: - template type: object terraform: description: Terraform is the struct to describe cloud resources managed by Hashicorp Terraform properties: configuration: description: Configuration is Terraform Configuration type: string path: description: Path is the sub-directory of remote git repository. It's valid when remote is set type: string providerRef: description: ProviderReference specifies the reference to Provider properties: name: description: Name of the referenced object. type: string namespace: default: default description: Namespace of the secret. type: string required: - name type: object type: default: hcl description: Type specifies which Terraform configuration it is, HCL or JSON syntax enum: - hcl - json - remote type: string required: - configuration type: object type: object skipRevisionAffect: description: SkipRevisionAffect defines the update this trait will not generate a new application Revision type: boolean status: description: Status defines the custom health policy and status message for trait properties: customStatus: description: CustomStatus defines the custom status message that could display to user type: string healthPolicy: description: HealthPolicy defines the health check policy for the abstraction type: string type: object workloadRefPath: description: WorkloadRefPath indicates where/if a trait accepts a workloadRef object type: string type: object status: description: TraitDefinitionStatus is the status of TraitDefinition properties: conditions: description: Conditions of the resource. items: description: A Condition that may apply to a resource. properties: lastTransitionTime: description: LastTransitionTime is the last time this condition transitioned from one status to another. format: date-time type: string message: description: A Message containing details about this condition's last transition from one status to another, if any. type: string reason: description: A Reason for this condition's last transition from one status to another. type: string status: description: Status of this condition; is it currently True, False, or Unknown? type: string type: description: Type of this condition. At most one of each condition type may apply to a resource at any point in time. type: string required: - lastTransitionTime - reason - status - type type: object type: array configMapRef: description: ConfigMapRef refer to a ConfigMap which contains OpenAPI V3 JSON schema of Component parameters. type: string latestRevision: description: LatestRevision of the component definition properties: name: type: string revision: format: int64 type: integer revisionHash: description: RevisionHash record the hash value of the spec of ApplicationRevision object. type: string required: - name - revision type: object type: object type: object workflowStepDefinition: description: WorkflowStepDefinition records the snapshot of the created/modified WorkflowStepDefinition properties: apiVersion: description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' type: string kind: description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' type: string metadata: properties: annotations: additionalProperties: type: string type: object finalizers: items: type: string type: array labels: additionalProperties: type: string type: object name: type: string namespace: type: string type: object spec: description: WorkflowStepDefinitionSpec defines the desired state of WorkflowStepDefinition properties: definitionRef: description: Reference to the CustomResourceDefinition that defines this trait kind. properties: name: description: Name of the referenced CustomResourceDefinition. type: string version: description: Version indicate which version should be used if CRD has multiple versions by default it will use the first one if not specified type: string required: - name type: object schematic: description: Schematic defines the data format and template of the encapsulation of the workflow step definition properties: cue: description: CUE defines the encapsulation in CUE format properties: template: description: Template defines the abstraction template data of the capability, it will replace the old CUE template in extension field. Template is a required field if CUE is defined in Capability Definition. type: string required: - template type: object helm: description: A Helm represents resources used by a Helm module properties: release: description: Release records a Helm release used by a Helm module workload. type: object repository: description: HelmRelease records a Helm repository used by a Helm module workload. type: object required: - release - repository type: object kube: description: Kube defines the encapsulation in raw Kubernetes resource format properties: parameters: description: Parameters defines configurable parameters items: description: A KubeParameter defines a configurable parameter of a component. properties: description: description: Description of this parameter. type: string fieldPaths: description: "FieldPaths specifies an array of fields within this workload that will be overwritten by the value of this parameter. \tAll fields must be of the same type. Fields are specified as JSON field paths without a leading dot, for example 'spec.replicas'." items: type: string type: array name: description: Name of this parameter type: string required: description: Required specifies whether or not a value for this parameter must be supplied when authoring an Application. type: boolean type: description: 'ValueType indicates the type of the parameter value, and only supports basic data types: string, number, boolean.' enum: - string - number - boolean type: string required: - fieldPaths - name - type type: object type: array template: description: Template defines the raw Kubernetes resource type: object required: - template type: object terraform: description: Terraform is the struct to describe cloud resources managed by Hashicorp Terraform properties: configuration: description: Configuration is Terraform Configuration type: string path: description: Path is the sub-directory of remote git repository. It's valid when remote is set type: string providerRef: description: ProviderReference specifies the reference to Provider properties: name: description: Name of the referenced object. type: string namespace: default: default description: Namespace of the secret. type: string required: - name type: object type: default: hcl description: Type specifies which Terraform configuration it is, HCL or JSON syntax enum: - hcl - json - remote type: string required: - configuration type: object type: object type: object status: description: WorkflowStepDefinitionStatus is the status of WorkflowStepDefinition properties: conditions: description: Conditions of the resource. items: description: A Condition that may apply to a resource. properties: lastTransitionTime: description: LastTransitionTime is the last time this condition transitioned from one status to another. format: date-time type: string message: description: A Message containing details about this condition's last transition from one status to another, if any. type: string reason: description: A Reason for this condition's last transition from one status to another. type: string status: description: Status of this condition; is it currently True, False, or Unknown? type: string type: description: Type of this condition. At most one of each condition type may apply to a resource at any point in time. type: string required: - lastTransitionTime - reason - status - type type: object type: array configMapRef: description: ConfigMapRef refer to a ConfigMap which contains OpenAPI V3 JSON schema of Component parameters. type: string latestRevision: description: LatestRevision of the component definition properties: name: type: string revision: format: int64 type: integer revisionHash: description: RevisionHash record the hash value of the spec of ApplicationRevision object. type: string required: - name - revision type: object type: object type: object required: - definitionType - revision - revisionHash type: object type: object served: true storage: true subresources: {} status: acceptedNames: kind: "" plural: "" conditions: [] storedVersions: []
51.257954
175
0.385688
f72389fa75fe32b83559d62273e6b6074580e5ee
402
yaml
YAML
deploy/openshift/1-configmap.yaml
odra/gitlab-webhooks
f5d835bff3d995cb136f40b8c4d6bf661a301d90
[ "MIT" ]
null
null
null
deploy/openshift/1-configmap.yaml
odra/gitlab-webhooks
f5d835bff3d995cb136f40b8c4d6bf661a301d90
[ "MIT" ]
null
null
null
deploy/openshift/1-configmap.yaml
odra/gitlab-webhooks
f5d835bff3d995cb136f40b8c4d6bf661a301d90
[ "MIT" ]
2
2020-12-09T13:08:25.000Z
2021-07-02T12:47:06.000Z
apiVersion: v1 kind: ConfigMap metadata: name: gitlab-webhook-fm-config data: default.toml: |- amqp_url = "amqps://gitlab-centos:@rabbitmq.fedoraproject.org/%2Fpubsub" [client_properties] app = "gitlab-centos" [tls] ca_cert = "/opt/gitlab-webhook/etc/certs/ca.pem" certfile = "/opt/gitlab-webhook/etc/certs/cert.pem" keyfile = "/opt/gitlab-webhook/etc/certs/key.pem"
25.125
76
0.689055
f723c5271e96498c22990c7499dfef27fc75c3aa
60
yml
YAML
k3s/apps/netbox/namespace.yml
rissson/dotshabka
3177fe76817d10bad41a1a518699210287330faa
[ "MIT" ]
null
null
null
k3s/apps/netbox/namespace.yml
rissson/dotshabka
3177fe76817d10bad41a1a518699210287330faa
[ "MIT" ]
1
2019-10-13T19:46:50.000Z
2019-10-13T19:46:50.000Z
k3s/apps/netbox/namespace.yml
rissson/dotshabka
3177fe76817d10bad41a1a518699210287330faa
[ "MIT" ]
1
2021-01-10T06:15:00.000Z
2021-01-10T06:15:00.000Z
--- apiVersion: v1 kind: Namespace metadata: name: netbox
10
15
0.716667
f723f12679e2afad50b9e6aee1437251d464471e
648
yaml
YAML
JenkinsPod.yaml
vlesierse/codebreaker
e2750ad7b92e489526f416b15b1ec416cecd7221
[ "MIT" ]
2
2017-10-17T20:19:33.000Z
2017-12-25T20:14:22.000Z
JenkinsPod.yaml
vlesierse/codebreaker
e2750ad7b92e489526f416b15b1ec416cecd7221
[ "MIT" ]
1
2021-03-08T22:46:15.000Z
2021-03-08T22:46:15.000Z
JenkinsPod.yaml
vlesierse/codebreaker
e2750ad7b92e489526f416b15b1ec416cecd7221
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod spec: containers: - name: docker image: docker:stable-git command: ["cat"] tty: true volumeMounts: - name: dockersock mountPath: "/var/run/docker.sock" - name: vamp-cli-ee image: vlesierse/vamp-cli-ee:latest command: ["cat"] tty: true volumes: - name: dockersock hostPath: path: /var/run/docker.sock #dnsPolicy: ClusterFirst #nodeSelector: # kubernetes.io/role: agent # beta.kubernetes.io/os: linux # type: virtual-kubelet #tolerations: #- key: virtual-kubelet.io/provider # operator: Exists #- key: azure.com/aci # effect: NoSchedule
20.903226
41
0.641975
f7241e1d196c74d37970f6c8a4325afa26bd6b12
2,870
yaml
YAML
config-root/namespaces/jx/lighthouse/lighthouse-keeper-deploy.yaml
Sun-ifly/jx
4bee4b5c1c4d58c49e359b5442fa8b4b924a585f
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-keeper-deploy.yaml
Sun-ifly/jx
4bee4b5c1c4d58c49e359b5442fa8b4b924a585f
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/lighthouse/lighthouse-keeper-deploy.yaml
Sun-ifly/jx
4bee4b5c1c4d58c49e359b5442fa8b4b924a585f
[ "Apache-2.0" ]
null
null
null
# Source: lighthouse/templates/keeper-deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: lighthouse-keeper labels: chart: "lighthouse-1.1.51" app: lighthouse-keeper gitops.jenkins-x.io/pipeline: 'namespaces' annotations: meta.helm.sh/release-name: 'lighthouse' wave.pusher.com/update-on-config-change: 'true' namespace: jx spec: replicas: 1 strategy: type: RollingUpdate rollingUpdate: maxSurge: 1 maxUnavailable: 1 selector: matchLabels: app: lighthouse-keeper template: metadata: annotations: ad.datadoghq.com/keeper.logs: '[{"source":"lighthouse","service":"keeper"}]' prometheus.io/port: "9090" prometheus.io/scrape: "true" jenkins-x.io/hash: '96b3634b43df2329d5c73888957b70798af1e33b9bc37b02d5c340ae6962f9cd' labels: app: lighthouse-keeper spec: serviceAccountName: lighthouse-keeper terminationGracePeriodSeconds: 30 containers: - name: lighthouse-keeper image: ghcr.io/jenkins-x/lighthouse-keeper:1.1.51 imagePullPolicy: IfNotPresent args: - "--namespace=jx" ports: - name: http containerPort: 8888 protocol: TCP livenessProbe: httpGet: path: / port: http initialDelaySeconds: 120 periodSeconds: 10 successThreshold: 1 timeoutSeconds: 1 readinessProbe: httpGet: path: / port: http periodSeconds: 10 successThreshold: 1 timeoutSeconds: 1 env: - name: "GIT_KIND" value: "github" - name: "GIT_SERVER" value: "https://github.com" - name: "GIT_USER" value: Sun-ifly - name: "GIT_TOKEN" valueFrom: secretKeyRef: name: lighthouse-oauth-token key: oauth - name: "JX_LOG_FORMAT" value: "json" - name: "LOGRUS_FORMAT" value: "json" - name: LOGRUS_SERVICE value: "lighthouse" - name: LOGRUS_SERVICE_VERSION value: "1.1.51" - name: LOGRUS_STACK_SKIP value: "" - name: "LIGHTHOUSE_KEEPER_STATUS_CONTEXT_LABEL" value: "Lighthouse Merge Status" - name: LIGHTHOUSE_TRIGGER_ON_MISSING value: "enable" envFrom: - secretRef: name: jx-boot-job-env-vars optional: true resources: limits: cpu: 400m memory: 512Mi requests: cpu: 100m memory: 128Mi
29.285714
93
0.531359
f724359344d00d49d0511c7fd917bfd729b4985e
689
yaml
YAML
v1/k8s/flask-deployment.yaml
JeffLabonte/pycon.ca
241fd9cfabc53c638af76c7769a2605ab1d9fd8a
[ "MIT" ]
null
null
null
v1/k8s/flask-deployment.yaml
JeffLabonte/pycon.ca
241fd9cfabc53c638af76c7769a2605ab1d9fd8a
[ "MIT" ]
null
null
null
v1/k8s/flask-deployment.yaml
JeffLabonte/pycon.ca
241fd9cfabc53c638af76c7769a2605ab1d9fd8a
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: flask-dep labels: app: flask-helloworld spec: replicas: 2 selector: matchLabels: app: flask-helloworld template: metadata: labels: app: flask-helloworld spec: containers: - name: flask image: grimsleepless/workshop_flask:v1 ports: - containerPort: 5000 env: - name: REDIS_HOST valueFrom: configMapKeyRef: name: redis-config key: host - name: REDIS_PORT valueFrom: configMapKeyRef: name: redis-config key: port
20.878788
46
0.531205
f7243bf77183673972b55a4eafee1e8e71f7859f
150,454
yaml
YAML
deploy/tectonic-alm-operator/manifests/0.5.0/08-tectonicocs.configmap.yaml
jsm84/operator-lifecycle-manager
755d4014f3efa3aa012b65b923d978006ab4b5bf
[ "Apache-2.0" ]
1
2018-12-07T17:58:48.000Z
2018-12-07T17:58:48.000Z
deploy/tectonic-alm-operator/manifests/0.5.0/08-tectonicocs.configmap.yaml
jsm84/operator-lifecycle-manager
755d4014f3efa3aa012b65b923d978006ab4b5bf
[ "Apache-2.0" ]
null
null
null
deploy/tectonic-alm-operator/manifests/0.5.0/08-tectonicocs.configmap.yaml
jsm84/operator-lifecycle-manager
755d4014f3efa3aa012b65b923d978006ab4b5bf
[ "Apache-2.0" ]
null
null
null
##--- # Source: olm/templates/08-tectonicocs.configmap.yaml kind: ConfigMap apiVersion: v1 metadata: name: tectonic-ocs namespace: tectonic-system labels: tectonic-operators.coreos.com/managed-by: tectonic-x-operator data: customResourceDefinitions: |- - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: alertmanagers.monitoring.coreos.com spec: group: monitoring.coreos.com version: v1 scope: Namespaced names: plural: alertmanagers singular: alertmanager kind: Alertmanager listKind: AlertmanagerList shortNames: - alertman - alrtman - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: etcdbackups.etcd.database.coreos.com spec: group: etcd.database.coreos.com version: v1beta2 scope: Namespaced names: kind: EtcdBackup listKind: EtcdBackupList plural: etcdbackups singular: etcdbackup - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: etcdclusters.etcd.database.coreos.com spec: group: etcd.database.coreos.com version: v1beta2 scope: Namespaced validation: openAPIv3: type: object description: Represents a single instance of etcd additionalProperties: false required: - version properties: version: type: string description: Version string pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\+[0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*)?$ x-descriptors: - urn:alm:descriptor:versioning:semver size: type: number description: The size of the etcd cluster min: 1 max: 9 x-descriptors: - urn:alm:descriptor:pod:count - urn:alm:descriptor:number:integer template: type: object description: Template for fields of subresources labels: type: object description: Labels to apply to associated resources names: plural: etcdclusters singular: etcdcluster kind: EtcdCluster listKind: EtcdClusterList shortNames: - etcdclus - etcd - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: etcdrestores.etcd.database.coreos.com spec: group: etcd.database.coreos.com version: v1beta2 scope: Namespaced names: kind: EtcdRestore listKind: EtcdRestoreList plural: etcdrestores singular: etcdrestore - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: prometheuses.monitoring.coreos.com spec: group: monitoring.coreos.com version: v1 scope: Namespaced names: plural: prometheuses singular: prometheus kind: Prometheus listKind: PrometheusList shortNames: - prom - prm - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: servicemonitors.monitoring.coreos.com spec: group: monitoring.coreos.com version: v1 scope: Namespaced names: plural: servicemonitors singular: servicemonitor kind: ServiceMonitor listKind: ServiceMonitorList shortNames: - servicemon - svcmon - svcmonitor - apiVersion: apiextensions.k8s.io/v1beta1 kind: CustomResourceDefinition metadata: name: vaultservices.vault.security.coreos.com spec: group: vault.security.coreos.com version: v1alpha1 scope: Namespaced validation: openAPIv3: type: object description: Represents a single instance of Vault additionalProperties: false required: - version properties: version: type: string description: Version string pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\+[0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*)?$ x-descriptors: - urn:alm:descriptor:versioning:semver nodes: type: number description: The number of nodes in the Vault cluster min: 1 max: 9 x-descriptors: - urn:alm:descriptor:pod:count - urn:alm:descriptor:number:integer template: type: object description: Template for fields of subresources labels: type: object description: Labels to apply to associated resources names: plural: vaultservices singular: vaultservice kind: VaultService listKind: VaultServiceList shortNames: - vault - vaultserv - vaultsrv clusterServiceVersions: |- - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: etcdoperator.v0.6.1 namespace: placeholder annotations: tectonic-visibility: ocs spec: displayName: etcd description: | etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines. It’s open-source and available on GitHub. etcd gracefully handles leader elections during network partitions and will tolerate machine failure, including the leader. Your applications can read and write data into etcd. A simple use-case is to store database connection details or feature flags within etcd as key value pairs. These values can be watched, allowing your app to reconfigure itself when they change. Advanced uses take advantage of the consistency guarantees to implement database leader elections or do distributed locking across a cluster of workers. _The etcd Open Cloud Service is Public Alpha. The goal before Beta is to fully implement backup features._ ### Reading and writing to etcd Communicate with etcd though its command line utility `etcdctl` or with the API using the automatically generated Kubernetes Service. [Read the complete guide to using the etcd Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/etcd-ocs.html) ### Supported Features **High availability** Multiple instances of etcd are networked together and secured. Individual failures or networking issues are transparently handled to keep your cluster up and running. **Automated updates** Rolling out a new etcd version works like all Kubernetes rolling updates. Simply declare the desired version, and the etcd service starts a safe rolling update to the new version automatically. **Backups included** Coming soon, the ability to schedule backups to happen on or off cluster. keywords: ['etcd', 'key value', 'database', 'coreos', 'open source'] version: 0.6.1 maturity: alpha maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc labels: alm-status-descriptors: etcdoperator.v0.6.1 alm-owner-etcd: etcdoperator operated-by: etcdoperator selector: matchLabels: alm-owner-etcd: etcdoperator operated-by: etcdoperator links: - name: Blog url: https://coreos.com/etcd - name: Documentation url: https://coreos.com/operators/etcd/docs/latest/ - name: etcd Operator Source Code url: https://github.com/coreos/etcd-operator icon: - base64data: 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 mediatype: image/png install: strategy: deployment spec: permissions: - serviceAccountName: etcd-operator rules: - apiGroups: - etcd.database.coreos.com resources: - etcdclusters verbs: - "*" - apiGroups: - storage.k8s.io resources: - storageclasses verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - events verbs: - "*" - apiGroups: - apps resources: - deployments verbs: - "*" - apiGroups: - "" resources: - secrets verbs: - get deployments: - name: etcd-operator spec: replicas: 1 selector: matchLabels: name: etcd-operator-alm-owned template: metadata: name: etcd-operator-alm-owned labels: name: etcd-operator-alm-owned spec: serviceAccountName: etcd-operator containers: - name: etcd-operator command: - etcd-operator - --create-crd=false image: quay.io/coreos/etcd-operator@sha256:bd944a211eaf8f31da5e6d69e8541e7cada8f16a9f7a5a570b22478997819943 env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name customresourcedefinitions: owned: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster displayName: etcd Cluster description: Represents a cluster of etcd nodes. resources: - kind: Service version: v1 - kind: Pod version: v1 specDescriptors: - description: The desired number of member Pods for the etcd cluster. displayName: Size path: size x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' statusDescriptors: - description: The status of each of the member Pods for the etcd cluster. displayName: Member Status path: members x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podStatuses' - description: The service at which the running etcd cluster can be accessed. displayName: Service path: service x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Service' - description: The current size of the etcd cluster. displayName: Cluster Size path: size - description: The current version of the etcd cluster. displayName: Current Version path: currentVersion - description: 'The target version of the etcd cluster, after upgrading.' displayName: Target Version path: targetVersion - description: The current status of the etcd cluster. displayName: Status path: phase x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase' - description: Explanation for the current status of the cluster. displayName: Status Details path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: etcdoperator.v0.9.0 namespace: placeholder annotations: tectonic-visibility: ocs alm-examples: '[{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdCluster","metadata":{"name":"example","namespace":"default"},"spec":{"size":3,"version":"3.2.13"}},{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdRestore","metadata":{"name":"example-etcd-cluster"},"spec":{"etcdCluster":{"name":"example-etcd-cluster"},"backupStorageType":"S3","s3":{"path":"<full-s3-path>","awsSecret":"<aws-secret>"}}},{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdBackup","metadata":{"name":"example-etcd-cluster-backup"},"spec":{"etcdEndpoints":["<etcd-cluster-endpoints>"],"storageType":"S3","s3":{"path":"<full-s3-path>","awsSecret":"<aws-secret>"}}}]' spec: displayName: etcd description: | etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines. It’s open-source and available on GitHub. etcd gracefully handles leader elections during network partitions and will tolerate machine failure, including the leader. Your applications can read and write data into etcd. A simple use-case is to store database connection details or feature flags within etcd as key value pairs. These values can be watched, allowing your app to reconfigure itself when they change. Advanced uses take advantage of the consistency guarantees to implement database leader elections or do distributed locking across a cluster of workers. _The etcd Open Cloud Service is Public Alpha. The goal before Beta is to fully implement backup features._ ### Reading and writing to etcd Communicate with etcd though its command line utility `etcdctl` or with the API using the automatically generated Kubernetes Service. [Read the complete guide to using the etcd Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/etcd-ocs.html) ### Supported Features **High availability** Multiple instances of etcd are networked together and secured. Individual failures or networking issues are transparently handled to keep your cluster up and running. **Automated updates** Rolling out a new etcd version works like all Kubernetes rolling updates. Simply declare the desired version, and the etcd service starts a safe rolling update to the new version automatically. **Backups included** Coming soon, the ability to schedule backups to happen on or off cluster. keywords: ['etcd', 'key value', 'database', 'coreos', 'open source'] version: 0.9.0 maturity: alpha replaces: etcdoperator.v0.6.1 maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc labels: alm-owner-etcd: etcdoperator operated-by: etcdoperator selector: matchLabels: alm-owner-etcd: etcdoperator operated-by: etcdoperator links: - name: Blog url: https://coreos.com/etcd - name: Documentation url: https://coreos.com/operators/etcd/docs/latest/ - name: etcd Operator Source Code url: https://github.com/coreos/etcd-operator icon: - base64data: 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 mediatype: image/png install: strategy: deployment spec: permissions: - serviceAccountName: etcd-operator rules: - apiGroups: - etcd.database.coreos.com resources: - etcdclusters - etcdbackups - etcdrestores verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - events verbs: - "*" - apiGroups: - apps resources: - deployments verbs: - "*" - apiGroups: - "" resources: - secrets verbs: - get deployments: - name: etcd-operator spec: replicas: 1 selector: matchLabels: name: etcd-operator-alm-owned template: metadata: name: etcd-operator-alm-owned labels: name: etcd-operator-alm-owned spec: serviceAccountName: etcd-operator containers: - name: etcd-operator command: - etcd-operator - --create-crd=false image: quay.io/coreos/etcd-operator@sha256:db563baa8194fcfe39d1df744ed70024b0f1f9e9b55b5923c2f3a413c44dc6b8 env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: etcd-backup-operator image: quay.io/coreos/etcd-operator@sha256:db563baa8194fcfe39d1df744ed70024b0f1f9e9b55b5923c2f3a413c44dc6b8 command: - etcd-backup-operator - --create-crd=false env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: etcd-restore-operator image: quay.io/coreos/etcd-operator@sha256:db563baa8194fcfe39d1df744ed70024b0f1f9e9b55b5923c2f3a413c44dc6b8 command: - etcd-restore-operator - --create-crd=false env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name customresourcedefinitions: owned: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster displayName: etcd Cluster description: Represents a cluster of etcd nodes. resources: - kind: Service version: v1 - kind: Pod version: v1 specDescriptors: - description: The desired number of member Pods for the etcd cluster. displayName: Size path: size x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - description: Limits describes the minimum/maximum amount of compute resources required/allowed displayName: Resource Requirements path: pod.resources x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:resourceRequirements' statusDescriptors: - description: The status of each of the member Pods for the etcd cluster. displayName: Member Status path: members x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podStatuses' - description: The service at which the running etcd cluster can be accessed. displayName: Service path: serviceName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Service' - description: The current size of the etcd cluster. displayName: Cluster Size path: size - description: The current version of the etcd cluster. displayName: Current Version path: currentVersion - description: 'The target version of the etcd cluster, after upgrading.' displayName: Target Version path: targetVersion - description: The current status of the etcd cluster. displayName: Status path: phase x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase' - description: Explanation for the current status of the cluster. displayName: Status Details path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - name: etcdbackups.etcd.database.coreos.com version: v1beta2 kind: EtcdBackup displayName: etcd Backup description: Represents the intent to backup an etcd cluster. specDescriptors: - description: Specifies the endpoints of an etcd cluster. displayName: etcd Endpoint(s) path: etcdEndpoints x-descriptors: - 'urn:alm:descriptor:etcd:endpoint' - description: The full AWS S3 path where the backup is saved. displayName: S3 Path path: s3.path x-descriptors: - 'urn:alm:descriptor:aws:s3:path' - description: The name of the secret object that stores the AWS credential and config files. displayName: AWS Secret path: s3.awsSecret x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Secret' statusDescriptors: - description: Indicates if the backup was successful. displayName: Succeeded path: succeeded x-descriptors: - 'urn:alm:descriptor:text' - description: Indicates the reason for any backup related failures. displayName: Reason path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - name: etcdrestores.etcd.database.coreos.com version: v1beta2 kind: EtcdRestore displayName: etcd Restore description: Represents the intent to restore an etcd cluster from a backup. specDescriptors: - description: References the EtcdCluster which should be restored, displayName: etcd Cluster path: etcdCluster.name x-descriptors: - 'urn:alm:descriptor:io.kubernetes:EtcdCluster' - 'urn:alm:descriptor:text' - description: The full AWS S3 path where the backup is saved. displayName: S3 Path path: s3.path x-descriptors: - 'urn:alm:descriptor:aws:s3:path' - description: The name of the secret object that stores the AWS credential and config files. displayName: AWS Secret path: s3.awsSecret x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Secret' statusDescriptors: - description: Indicates if the restore was successful. displayName: Succeeded path: succeeded x-descriptors: - 'urn:alm:descriptor:text' - description: Indicates the reason for any restore related failures. displayName: Reason path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: etcdoperator.v0.9.2 namespace: placeholder annotations: tectonic-visibility: ocs alm-examples: '[{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdCluster","metadata":{"name":"example","namespace":"default"},"spec":{"size":3,"version":"3.2.13"}},{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdRestore","metadata":{"name":"example-etcd-cluster"},"spec":{"etcdCluster":{"name":"example-etcd-cluster"},"backupStorageType":"S3","s3":{"path":"<full-s3-path>","awsSecret":"<aws-secret>"}}},{"apiVersion":"etcd.database.coreos.com/v1beta2","kind":"EtcdBackup","metadata":{"name":"example-etcd-cluster-backup"},"spec":{"etcdEndpoints":["<etcd-cluster-endpoints>"],"storageType":"S3","s3":{"path":"<full-s3-path>","awsSecret":"<aws-secret>"}}}]' spec: displayName: etcd description: | etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines. It’s open-source and available on GitHub. etcd gracefully handles leader elections during network partitions and will tolerate machine failure, including the leader. Your applications can read and write data into etcd. A simple use-case is to store database connection details or feature flags within etcd as key value pairs. These values can be watched, allowing your app to reconfigure itself when they change. Advanced uses take advantage of the consistency guarantees to implement database leader elections or do distributed locking across a cluster of workers. _The etcd Open Cloud Service is Public Alpha. The goal before Beta is to fully implement backup features._ ### Reading and writing to etcd Communicate with etcd though its command line utility `etcdctl` or with the API using the automatically generated Kubernetes Service. [Read the complete guide to using the etcd Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/etcd-ocs.html) ### Supported Features **High availability** Multiple instances of etcd are networked together and secured. Individual failures or networking issues are transparently handled to keep your cluster up and running. **Automated updates** Rolling out a new etcd version works like all Kubernetes rolling updates. Simply declare the desired version, and the etcd service starts a safe rolling update to the new version automatically. **Backups included** Coming soon, the ability to schedule backups to happen on or off cluster. keywords: ['etcd', 'key value', 'database', 'coreos', 'open source'] version: 0.9.2 maturity: alpha replaces: etcdoperator.v0.9.0 maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc labels: alm-owner-etcd: etcdoperator operated-by: etcdoperator selector: matchLabels: alm-owner-etcd: etcdoperator operated-by: etcdoperator links: - name: Blog url: https://coreos.com/etcd - name: Documentation url: https://coreos.com/operators/etcd/docs/latest/ - name: etcd Operator Source Code url: https://github.com/coreos/etcd-operator icon: - base64data: iVBORw0KGgoAAAANSUhEUgAAAOEAAADZCAYAAADWmle6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAEKlJREFUeNrsndt1GzkShmEev4sTgeiHfRYdgVqbgOgITEVgOgLTEQydwIiKwFQCayoCU6+7DyYjsBiBFyVVz7RkXvqCSxXw/+f04XjGQ6IL+FBVuL769euXgZ7r39f/G9iP0X+u/jWDNZzZdGI/Ftama1jjuV4BwmcNpbAf1Fgu+V/9YRvNAyzT2a59+/GT/3hnn5m16wKWedJrmOCxkYztx9Q+py/+E0GJxtJdReWfz+mxNt+QzS2Mc0AI+HbBBwj9QViKbH5t64DsP2fvmGXUkWU4WgO+Uve2YQzBUGd7r+zH2ZG/tiUQc4QxKwgbwFfVGwwmdLL5wH78aPC/ZBem9jJpCAX3xtcNASSNgJLzUPSQyjB1zQNl8IQJ9MIU4lx2+Jo72ysXYKl1HSzN02BMa/vbZ5xyNJIshJzwf3L0dQhJw4Sih/SFw9Tk8sVeghVPoefaIYCkMZCKbrcP9lnZuk0uPUjGE/KE8JQry7W2tgfuC3vXgvNV+qSQbyFtAtyWk7zWiYevvuUQ9QEQCvJ+5mmu6dTjz1zFHLFj8Eb87MtxaZh/IQFIHom+9vgTWwZxAQjT9X4vtbEVPojwjiV471s00mhAckpwGuCn1HtFtRDaSh6y9zsL+LNBvCG/24ThcxHObdlWc1v+VQJe8LcO0jwtuF8BwnAAUgP9M8JPU2Me+Oh12auPGT6fHuTePE3bLDy+x9pTLnhMn+07TQGh//Bz1iI0c6kvtqInjvPZcYR3KsPVmUsPYt9nFig9SCY8VQNhpPBzn952bbgcsk2EvM89wzh3UEffBbyPqvBUBYQ8ODGPFOLsa7RF096WJ69L+E4EmnpjWu5o4ChlKaRTKT39RMMaVPEQRsz/nIWlDN80chjdJlSd1l0pJCAMVZsniobQVuxceMM9OFoaMd9zqZtjMEYYDW38Drb8Y0DYPLShxn0pvIFuOSxd7YCPet9zk452wsh54FJoeN05hcgSQoG5RR0Qh9Q4E4VvL4wcZq8UACgaRFEQKgSwWrkr5WFnGxiHSutqJGlXjBgIOayhwYBTA0ER0oisIVSUV0AAMT0IASCUO4hRIQSAEECMCCEPwqyQA0JCQBzEGjWNAqHiUVAoXUWbvggOIQCEAOJzxTjoaQ4AIaE64/aZridUsBYUgkhB15oGg1DBIl8IqirYwV6hPSGBSFteMCUBSVXwfYixBmamRubeMyjzMJQBDDowE3OesDD+zwqFoDqiEwXoXJpljB+PvWJGy75BKF1FPxhKygJuqUdYQGlLxNEXkrYyjQ0GbaAwEnUIlLRNvVjQDYUAsJB0HKLE4y0AIpQNgCIhBIhQTgCKhZBBpAN/v6LtQI50JfUgYOnnjmLUFHKhjxbAmdTCaTiBm3ovLPqG2urWAij6im0Nd9aTN9ygLUEt9LgSRnohxUPIKxlGaE+/6Y7znFf0yX+GnkvFFWmarkab2o9PmTeq8sbd2a7DaysXz7i64VeznN4jCQhN9gdDbRiuWrfrsq0mHIrlaq+hlotCtd3Um9u0BYWY8y5D67wccJoZjFca7iUs9VqZcfsZwTd1sbWGG+OcYaTnPAP7rTQVVlM4Sg3oGvB1tmNh0t/HKXZ1jFoIMwCQjtqbhNxUmkGYqgZEDZP11HN/S3gAYRozf0l8C5kKEKUvW0t1IfeWG/5MwgheZTT1E0AEhDkAePQO+Ig2H3DncAkQM4cwUQCD530dU4B5Yvmi2LlDqXfWrxMCcMth51RToRMNUXFnfc2KJ0+Ryl0VNOUwlhh6NoxK5gnViTgQpUG4SqSyt5z3zRJpuKmt3Q1614QaCBPaN6je+2XiFcWAKOXcUfIYKRyL/1lb7pe5VxSxxjQ6hImshqGRt5GWZVKO6q2wHwujfwDtIvaIdexj8Cm8+a68EqMfox6x/voMouZF4dHnEGNeCDMwT6vdNfekH1MafMk4PI06YtqLVGl95aEM9Z5vAeCTOA++YLtoVJRrsqNCaJ6WRmkdYaNec5BT/lcTRMqrhmwfjbpkj55+OKp8IEbU/JLgPJE6Wa3TTe9sHS+ShVD5QIyqIxMEwKh12olC6mHIed5ewEop80CNlfIOADYOT2nd6ZXCop+Ebqchc0JqxKcKASxChycJgUh1rnHA5ow9eTrhqNI7JWiAYYwBGGdpyNLoGw0Pkh96h1BpHihyywtATDM/7Hk2fN9EnH8BgKJCU4ooBkbXFMZJiPbrOyecGl3zgQDQL4hk10IZiOe+5w99Q/gBAEIJgPhJM4QAEEoFREAIAAEiIASAkD8Qt4AQAEIAERAGFlX4CACKAXGVM4ivMwWwCLFAlyeoaa70QePKm5Dlp+/n+ye/5dYgva6YsUaVeMa+tzNFeJtWwc+udbJ0Fg399kLielQJ5Ze61c2+7ytA6EZetiPxZC6tj22yJCv6jUwOyj/zcbqAxOMyAKEbfeHtNa7DtYXptjsk2kJxR+eIeim/tHNofUKYy8DMrQcAKWz6brpvzyIAlpwPhQ49l6b7skJf5Z+YTOYQc4FwLDxvoTDwaygQK+U/kVr+ytSFBG01Q3gnJJR4cNiAhx4HDub8/b5DULXlj6SVZghFiE+LdvE9vo/o8Lp1RmH5hzm0T6wdbZ6n+D6i44zDRc3ln6CpAEJfXiRU45oqLz8gFAThWsh7ughrRibc0QynHgZpNJa/ENJ+loCwu/qOGnFIjYR/n7TfgycULhcQhu6VC+HfF+L3BoAQ4WiZTw1M+FPCnA2gKC6/FAhXgDC+ojQGh3NuWsvfF1L/D5ohlCKtl1j2ldu9a/nPAKFwN56Bst10zCG0CPleXN/zXPgHQZXaZaBgrbzyY5V/mUA+6F0hwtGN9rwu5DVZPuwWqfxdFz1LWbJ2lwKEa+0Qsm4Dl3fp+Pu0lV97PgwIPfSsS+UQhj5Oo+vvFULazRIQyvGEcxPuNLCth2MvFsrKn8UOilAQShkh7TTczYNMoS6OdP47msrPi82lXKGWhCdMZYS0bFy+vcnGAjP1CIfvgbKNA9glecEH9RD6Ol4wRuWyN/G9MHnksS6o/GPf5XcwNSUlHzQhDuAKtWJmkwKElU7lylP5rgIcsquh/FI8YZCDpkJBuE4FQm7Icw8N+SrUGaQKyi8FwiDt1ve5o+Vu7qYHy/psgK8cvh+FTYuO77bhEC7GuaPiys/L1X4IgXDL+e3M5+ovLxBy5VLuIebw1oqcHoPfoaMJUsHays878r8KbDc3xtPx/84gZPBG/JwaufrsY/SRG/OY3//8QMNdsvdZCFtbW6f8pFuf5bflILAlX7O+4fdfugKyFYS8T2zAsXthdG0VurPGKwI06oF5vkBgHWkNp6ry29+lsPZMU3vijnXFNmoclr+6+Ou/FIb8yb30sS8YGjmTqCLyQsi5N/6ZwKs0Yenj68pfPjF6N782Dp2FzV9CTyoSeY8mLK16qGxIkLI8oa1n8tz9juP40DlK0epxYEbojbq+9QfurBeVIlCO9D2396bxiV4lkYQ3hOAFw2pbhqMGISkkQOMcQ9EqhDmGZZdo92JC0YHRNTfoSg+5e0IT+opqCKHoIU+4ztQIgBD1EFNrQAgIpYSil9lDmPHqkROPt+JC6AgPquSuumJmg0YARVCuneDfvPVeJokZ6pIXDkNxQtGzTF9/BQjRG0tQznfb74RwCQghpALBtIQnfK4zhxdyQvVCUeknMIT3hLyY+T5jo0yABqKPQNpUNw/09tGZod5jgCaYFxyYvJcNPkv9eof+I3pnCFEHIETjSM8L9tHZHYCQT9PaZGycU6yg8S4akDnJ+P03L0+t23XGzCLzRgII/Wqa+fv/xlfvmKvMUOcOrlCDdoei1MGdZm6G5VEIfRzzjd4aQs69n699Rx7ewhvCGzr2gmTPs8zNsJOrXt24FbkhhOjCfT4ICA/rPbyhUy94Dks0gJCX1NzCZui9YUd3oei+c257TalFbgg19ILHrlrL2gvWgXAL26EX76gZTNASQnad8Ibwhl284NhgXpB0c+jKhWO3Ms1hP9ihJYB9eMF6qd1BCPk0qA1s+LimFIu7m4nsdQIzPK4VbQ8hYvrnuSH2G9b2ggP78QmWqBdF9Vx8SSY6QYdUW7BTA1schZATyhvY8lHvcRbNUS9YGFy2U+qmzh2YPVc0I7yAOFyHfRpyUwtCSzOdPXMHmz7qDIM0e0V2wZTEk+6Ym6N63eBLp/b5Bts+2cKCSJ/LuoZO3ANSiE5hKAZjnvNSS4931jcw9jpwT0feV/qSJ1pVtCyfHKDkvK8Ejx7pUxGh2xFNSwx8QTi2H9ceC0/nni64MS/5N5dG39pDqvRV+WgGk71c9VFXF9b+xYvOw/d61iv7m3MvEHryhvecwC52jSSx4VIIgwnMNT/UsTxIgpPt3K/ARj15CptwL3Zd/ceDSATj2DGQjbxgWwhdeMMte7zpy5On9vymRm/YxBYljGVjKWF9VJf7I1+sex3wY8w/V1QPTborW/72gkdsRDaZMJBdbdHIC7aCkAu9atlLbtnrzerMnyToDaGwelOnk3/hHSem/ZK7e/t7jeeR20LYBgqa8J80gS8jbwi5F02Uj1u2NYJxap8PLkJfLxA2hIJyvnHX/AfeEPLpBfe0uSFHbnXaea3Qd5d6HcpYZ8L6M7lnFwMQ3MNg+RxUR1+6AshtbsVgfXTEg1sIGax9UND2p7f270wdG3eK9gXVGHdw2k5sOyZv+Nbs39Z308XR9DqWb2J+PwKDhuKHPobfuXf7gnYGHdCs7bhDDadD4entDug7LWNsnRNW4mYqwJ9dk+GGSTPBiA2j0G8RWNM5upZtcG4/3vMfP7KnbK2egx6CCnDPhRn7NgD3cghLIad5WcM2SO38iqHvvMOosyeMpQ5zlVCaaj06GVs9xUbHdiKoqrHWgquFEFMWUEWfXUxJAML23hAHFOctmjZQffKD2pywkhtSGHKNtpitLroscAeE7kCkSsC60vxEl6yMtL9EL5HKGCMszU5bk8gdkklAyEn5FO0yK419rIxBOIqwFMooDE0tHEVYijAUECIshRCGIhxFWIowFJ5QkEYIS5PTJrUwNGlPyN6QQPyKtpuM1E/K5+YJDV/MiA3AaehzqgAm7QnZG9IGYKo8bHnSK7VblLL3hOwNHziPuEGOqE5brrdR6i+atCfckyeWD47HkAkepRGLY/e8A8J0gCwYSNypF08bBm+e6zVz2UL4AshhBUjML/rXLefqC82bcQFhGC9JDwZ1uuu+At0S5gCETYHsV4DUeD9fDN2Zfy5OXaW2zAwQygCzBLJ8cvaW5OXKC1FxfTggFAHmoAJnSiOw2wps9KwRWgJCLaEswaj5NqkLwAYIU4BxqTSXbHXpJdRMPZgAOiAMqABCNGYIEEJutEK5IUAIwYMDQgiCACEEAcJs1Vda7gGqDhCmoiEghAAhBAHCrKXVo2C1DCBMRlp37uMIEECoX7xrX3P5C9QiINSuIcoPAUI0YkAICLNWgfJDh4T9hH7zqYH9+JHAq7zBqWjwhPAicTVCVQJCNF50JghHocahKK0X/ZnQKyEkhSdUpzG8OgQI42qC94EQjsYLRSmH+pbgq73L6bYkeEJ4DYTYmeg1TOBFc/usTTp3V9DdEuXJ2xDCUbXhaXk0/kAYmBvuMB4qkC35E5e5AMKkwSQgyxufyuPy6fMMgAFCSI73LFXU/N8AmEL9X4ABACNSKMHAgb34AAAAAElFTkSuQmCC mediatype: image/png install: strategy: deployment spec: permissions: - serviceAccountName: etcd-operator rules: - apiGroups: - etcd.database.coreos.com resources: - etcdclusters - etcdbackups - etcdrestores verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - events verbs: - "*" - apiGroups: - apps resources: - deployments verbs: - "*" - apiGroups: - "" resources: - secrets verbs: - get deployments: - name: etcd-operator spec: replicas: 1 selector: matchLabels: name: etcd-operator-alm-owned template: metadata: name: etcd-operator-alm-owned labels: name: etcd-operator-alm-owned spec: serviceAccountName: etcd-operator containers: - name: etcd-operator command: - etcd-operator - --create-crd=false image: quay.io/coreos/etcd-operator@sha256:c0301e4686c3ed4206e370b42de5a3bd2229b9fb4906cf85f3f30650424abec2 env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: etcd-backup-operator image: quay.io/coreos/etcd-operator@sha256:c0301e4686c3ed4206e370b42de5a3bd2229b9fb4906cf85f3f30650424abec2 command: - etcd-backup-operator - --create-crd=false env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: etcd-restore-operator image: quay.io/coreos/etcd-operator@sha256:c0301e4686c3ed4206e370b42de5a3bd2229b9fb4906cf85f3f30650424abec2 command: - etcd-restore-operator - --create-crd=false env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name customresourcedefinitions: owned: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster displayName: etcd Cluster description: Represents a cluster of etcd nodes. resources: - kind: Service version: v1 - kind: Pod version: v1 specDescriptors: - description: The desired number of member Pods for the etcd cluster. displayName: Size path: size x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - description: Limits describes the minimum/maximum amount of compute resources required/allowed displayName: Resource Requirements path: pod.resources x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:resourceRequirements' statusDescriptors: - description: The status of each of the member Pods for the etcd cluster. displayName: Member Status path: members x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podStatuses' - description: The service at which the running etcd cluster can be accessed. displayName: Service path: serviceName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Service' - description: The current size of the etcd cluster. displayName: Cluster Size path: size - description: The current version of the etcd cluster. displayName: Current Version path: currentVersion - description: 'The target version of the etcd cluster, after upgrading.' displayName: Target Version path: targetVersion - description: The current status of the etcd cluster. displayName: Status path: phase x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase' - description: Explanation for the current status of the cluster. displayName: Status Details path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - name: etcdbackups.etcd.database.coreos.com version: v1beta2 kind: EtcdBackup displayName: etcd Backup description: Represents the intent to backup an etcd cluster. specDescriptors: - description: Specifies the endpoints of an etcd cluster. displayName: etcd Endpoint(s) path: etcdEndpoints x-descriptors: - 'urn:alm:descriptor:etcd:endpoint' - description: The full AWS S3 path where the backup is saved. displayName: S3 Path path: s3.path x-descriptors: - 'urn:alm:descriptor:aws:s3:path' - description: The name of the secret object that stores the AWS credential and config files. displayName: AWS Secret path: s3.awsSecret x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Secret' statusDescriptors: - description: Indicates if the backup was successful. displayName: Succeeded path: succeeded x-descriptors: - 'urn:alm:descriptor:text' - description: Indicates the reason for any backup related failures. displayName: Reason path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - name: etcdrestores.etcd.database.coreos.com version: v1beta2 kind: EtcdRestore displayName: etcd Restore description: Represents the intent to restore an etcd cluster from a backup. specDescriptors: - description: References the EtcdCluster which should be restored, displayName: etcd Cluster path: etcdCluster.name x-descriptors: - 'urn:alm:descriptor:io.kubernetes:EtcdCluster' - 'urn:alm:descriptor:text' - description: The full AWS S3 path where the backup is saved. displayName: S3 Path path: s3.path x-descriptors: - 'urn:alm:descriptor:aws:s3:path' - description: The name of the secret object that stores the AWS credential and config files. displayName: AWS Secret path: s3.awsSecret x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Secret' statusDescriptors: - description: Indicates if the restore was successful. displayName: Succeeded path: succeeded x-descriptors: - 'urn:alm:descriptor:text' - description: Indicates the reason for any restore related failures. displayName: Reason path: reason x-descriptors: - 'urn:alm:descriptor:io.kubernetes.phase:reason' - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: prometheusoperator.0.14.0 namespace: placeholder spec: displayName: Prometheus description: | An open-source monitoring system with a dimensional data model, flexible query language, efficient time series database and modern alerting approach. _The Prometheus Open Cloud Service is Public Alpha. The goal before Beta is for additional user testing and minor bug fixes._ ### Monitoring applications Prometheus scrapes your application metrics based on targets maintained in a ServiceMonitor object. When alerts need to be sent, they are processsed by an AlertManager. [Read the complete guide to monitoring applications with the Prometheus Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/prometheus-ocs.html) ## Supported Features **High availability** Multiple instances are run across failure zones and data is replicated. This keeps your monitoring available during an outage, when you need it most. **Updates via automated operations** New Prometheus versions are deployed using a rolling update with no downtime, making it easy to stay up to date. **Handles the dynamic nature of containers** Alerting rules are attached to groups of containers instead of individual instances, which is ideal for the highly dynamic nature of container deployment. keywords: ['prometheus', 'monitoring', 'tsdb', 'alerting'] maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc links: - name: Prometheus url: https://www.prometheus.io/ - name: Documentation url: https://coreos.com/operators/prometheus/docs/latest/ - name: Prometheus Operator Source Code url: https://github.com/coreos/prometheus-operator labels: alm-status-descriptors: prometheusoperator.0.14.0 alm-owner-prometheus: prometheusoperator selector: matchLabels: alm-owner-prometheus: prometheusoperator icon: - base64data: PHN2ZyB3aWR0aD0iMjQ5MCIgaGVpZ2h0PSIyNTAwIiB2aWV3Qm94PSIwIDAgMjU2IDI1NyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCI+PHBhdGggZD0iTTEyOC4wMDEuNjY3QzU3LjMxMS42NjcgMCA1Ny45NzEgMCAxMjguNjY0YzAgNzAuNjkgNTcuMzExIDEyNy45OTggMTI4LjAwMSAxMjcuOTk4UzI1NiAxOTkuMzU0IDI1NiAxMjguNjY0QzI1NiA1Ny45NyAxOTguNjg5LjY2NyAxMjguMDAxLjY2N3ptMCAyMzkuNTZjLTIwLjExMiAwLTM2LjQxOS0xMy40MzUtMzYuNDE5LTMwLjAwNGg3Mi44MzhjMCAxNi41NjYtMTYuMzA2IDMwLjAwNC0zNi40MTkgMzAuMDA0em02MC4xNTMtMzkuOTRINjcuODQyVjE3OC40N2gxMjAuMzE0djIxLjgxNmgtLjAwMnptLS40MzItMzMuMDQ1SDY4LjE4NWMtLjM5OC0uNDU4LS44MDQtLjkxLTEuMTg4LTEuMzc1LTEyLjMxNS0xNC45NTQtMTUuMjE2LTIyLjc2LTE4LjAzMi0zMC43MTYtLjA0OC0uMjYyIDE0LjkzMyAzLjA2IDI1LjU1NiA1LjQ1IDAgMCA1LjQ2NiAxLjI2NSAxMy40NTggMi43MjItNy42NzMtOC45OTQtMTIuMjMtMjAuNDI4LTEyLjIzLTMyLjExNiAwLTI1LjY1OCAxOS42OC00OC4wNzkgMTIuNTgtNjYuMjAxIDYuOTEuNTYyIDE0LjMgMTQuNTgzIDE0LjggMzYuNTA1IDcuMzQ2LTEwLjE1MiAxMC40Mi0yOC42OSAxMC40Mi00MC4wNTYgMC0xMS43NjkgNy43NTUtMjUuNDQgMTUuNTEyLTI1LjkwNy02LjkxNSAxMS4zOTYgMS43OSAyMS4xNjUgOS41MyA0NS40IDIuOTAyIDkuMTAzIDIuNTMyIDI0LjQyMyA0Ljc3MiAzNC4xMzguNzQ0LTIwLjE3OCA0LjIxMy00OS42MiAxNy4wMTQtNTkuNzg0LTUuNjQ3IDEyLjguODM2IDI4LjgxOCA1LjI3IDM2LjUxOCA3LjE1NCAxMi40MjQgMTEuNDkgMjEuODM2IDExLjQ5IDM5LjYzOCAwIDExLjkzNi00LjQwNyAyMy4xNzMtMTEuODQgMzEuOTU4IDguNDUyLTEuNTg2IDE0LjI4OS0zLjAxNiAxNC4yODktMy4wMTZsMjcuNDUtNS4zNTVjLjAwMi0uMDAyLTMuOTg3IDE2LjQwMS0xOS4zMTQgMzIuMTk3eiIgZmlsbD0iI0RBNEUzMSIvPjwvc3ZnPg== mediatype: image/svg+xml install: strategy: deployment spec: permissions: - serviceAccountName: prometheus-k8s rules: - apiGroups: [""] resources: - nodes - services - endpoints - pods verbs: ["get", "list", "watch"] - apiGroups: [""] resources: - configmaps verbs: ["get"] - serviceAccountName: prometheus-operator-0-14-0 rules: - apiGroups: - apiextensions.k8s.io resources: - customresourcedefinitions verbs: ["get", "list"] - apiGroups: - monitoring.coreos.com resources: - alertmanagers - prometheuses - servicemonitors verbs: - "*" - apiGroups: - apps resources: - statefulsets verbs: ["*"] - apiGroups: [""] resources: - configmaps - secrets verbs: ["*"] - apiGroups: [""] resources: - pods verbs: ["list", "delete"] - apiGroups: [""] resources: - services - endpoints verbs: ["get", "create", "update"] - apiGroups: [""] resources: - nodes verbs: ["list", "watch"] - apiGroups: [""] resources: - namespaces verbs: ['list'] deployments: - name: prometheus-operator spec: replicas: 1 selector: matchLabels: k8s-app: prometheus-operator template: metadata: labels: k8s-app: prometheus-operator spec: serviceAccount: prometheus-operator-0-14-0 containers: - name: prometheus-operator image: quay.io/coreos/prometheus-operator@sha256:5037b4e90dbb03ebdefaa547ddf6a1f748c8eeebeedf6b9d9f0913ad662b5731 command: - sh - -c - > /bin/operator --namespace=$K8S_NAMESPACE --crd-apigroup monitoring.coreos.com --labels alm-status-descriptors=prometheusoperator.0.14.0,alm-owner-prometheus=prometheusoperator --kubelet-service=kube-system/kubelet --config-reloader-image=quay.io/coreos/configmap-reload:v0.0.1 env: - name: K8S_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace ports: - containerPort: 8080 name: http resources: limits: cpu: 200m memory: 100Mi requests: cpu: 100m memory: 50Mi maturity: alpha version: 0.14.0 customresourcedefinitions: owned: - name: prometheuses.monitoring.coreos.com version: v1 kind: Prometheus displayName: Prometheus description: A running Prometheus instance resources: - kind: Pod version: v1 specDescriptors: - description: Desired number of Pods for the cluster displayName: Size path: replicas x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - description: A selector for the ConfigMaps from which to load rule files displayName: Rule Config Map Selector path: ruleSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:selector:ConfigMap' - description: ServiceMonitors to be selected for target discovery displayName: Service Monitor Selector path: serviceMonitorSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:selector:ServiceMonitor' - description: The ServiceAccount to use to run the Prometheus pods displayName: Service Account path: serviceAccountName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:ServiceAccount' - description: Define resources requests and limits for single Pods displayName: Resource Request path: resources.requests x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:resourceRequirements' statusDescriptors: - description: The current number of Pods for the cluster displayName: Cluster Size path: replicas - path: prometheusSelector displayName: Prometheus Service Selector description: Label selector to find the service that routes to this prometheus x-descriptors: - 'urn:alm:descriptor:label:selector' - name: servicemonitors.monitoring.coreos.com version: v1 kind: ServiceMonitor displayName: Service Monitor description: Configures prometheus to monitor a particular k8s service resources: - kind: Pod version: v1 specDescriptors: - description: Selector to select which namespaces the Endpoints objects are discovered from displayName: Monitoring Namespaces path: namespaceSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:namespaceSelector' - description: The label to use to retrieve the job name from displayName: Job Label path: jobLabel x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:label' - description: A list of endpoints allowed as part of this ServiceMonitor displayName: Endpoints path: endpoints x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:endpointList' - name: alertmanagers.monitoring.coreos.com version: v1 kind: Alertmanager displayName: Alert Manager description: Configures an Alert Manager for the namespace resources: - kind: Pod version: v1 specDescriptors: - description: Desired number of Pods for the cluster displayName: Size path: replicas x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: prometheusoperator.0.15.0 namespace: placeholder annotations: tectonic-visibility: ocs alm-examples: '[{"apiVersion":"monitoring.coreos.com/v1","kind":"Prometheus","metadata":{"name":"example","labels":{"prometheus":"k8s"}},"spec":{"replicas":2,"version":"v1.7.0","serviceAccountName":"prometheus-k8s","serviceMonitorSelector":{"matchExpressions":[{"key":"k8s-app","operator":"Exists"}]},"ruleSelector":{"matchLabels":{"role":"prometheus-rulefiles","prometheus":"k8s"}},"resources":{"requests":{"memory":"400Mi"}},"alerting":{"alertmanagers":[{"namespace":"monitoring","name":"alertmanager-main","port":"web"}]}}},{"apiVersion":"monitoring.coreos.com/v1","kind":"ServiceMonitor","metadata":{"name":"example","labels":{"k8s-app":"prometheus"}},"spec":{"selector":{"matchLabels":{"k8s-app":"prometheus","prometheus":"k8s"}},"namespaceSelector":{"matchNames":["monitoring"]},"endpoints":[{"port":"web","interval":"30s"}]}},{"apiVersion":"monitoring.coreos.com/v1","kind":"Alertmanager","metadata":{"name":"alertmanager-main"},"spec":{"replicas":3}}]' spec: replaces: prometheusoperator.0.14.0 displayName: Prometheus description: | An open-source monitoring system with a dimensional data model, flexible query language, efficient time series database and modern alerting approach. _The Prometheus Open Cloud Service is Public Alpha. The goal before Beta is for additional user testing and minor bug fixes._ ### Monitoring applications Prometheus scrapes your application metrics based on targets maintained in a ServiceMonitor object. When alerts need to be sent, they are processsed by an AlertManager. [Read the complete guide to monitoring applications with the Prometheus Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/prometheus-ocs.html) ### Supported Features **High availability** Multiple instances are run across failure zones and data is replicated. This keeps your monitoring available during an outage, when you need it most. **Updates via automated operations** New Prometheus versions are deployed using a rolling update with no downtime, making it easy to stay up to date. **Handles the dynamic nature of containers** Alerting rules are attached to groups of containers instead of individual instances, which is ideal for the highly dynamic nature of container deployment. keywords: ['prometheus', 'monitoring', 'tsdb', 'alerting'] maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc links: - name: Prometheus url: https://www.prometheus.io/ - name: Documentation url: https://coreos.com/operators/prometheus/docs/latest/ - name: Prometheus Operator Source Code url: https://github.com/coreos/prometheus-operator labels: alm-status-descriptors: prometheusoperator.0.15.0 alm-owner-prometheus: prometheusoperator selector: matchLabels: alm-owner-prometheus: prometheusoperator icon: - base64data: PHN2ZyB3aWR0aD0iMjQ5MCIgaGVpZ2h0PSIyNTAwIiB2aWV3Qm94PSIwIDAgMjU2IDI1NyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCI+PHBhdGggZD0iTTEyOC4wMDEuNjY3QzU3LjMxMS42NjcgMCA1Ny45NzEgMCAxMjguNjY0YzAgNzAuNjkgNTcuMzExIDEyNy45OTggMTI4LjAwMSAxMjcuOTk4UzI1NiAxOTkuMzU0IDI1NiAxMjguNjY0QzI1NiA1Ny45NyAxOTguNjg5LjY2NyAxMjguMDAxLjY2N3ptMCAyMzkuNTZjLTIwLjExMiAwLTM2LjQxOS0xMy40MzUtMzYuNDE5LTMwLjAwNGg3Mi44MzhjMCAxNi41NjYtMTYuMzA2IDMwLjAwNC0zNi40MTkgMzAuMDA0em02MC4xNTMtMzkuOTRINjcuODQyVjE3OC40N2gxMjAuMzE0djIxLjgxNmgtLjAwMnptLS40MzItMzMuMDQ1SDY4LjE4NWMtLjM5OC0uNDU4LS44MDQtLjkxLTEuMTg4LTEuMzc1LTEyLjMxNS0xNC45NTQtMTUuMjE2LTIyLjc2LTE4LjAzMi0zMC43MTYtLjA0OC0uMjYyIDE0LjkzMyAzLjA2IDI1LjU1NiA1LjQ1IDAgMCA1LjQ2NiAxLjI2NSAxMy40NTggMi43MjItNy42NzMtOC45OTQtMTIuMjMtMjAuNDI4LTEyLjIzLTMyLjExNiAwLTI1LjY1OCAxOS42OC00OC4wNzkgMTIuNTgtNjYuMjAxIDYuOTEuNTYyIDE0LjMgMTQuNTgzIDE0LjggMzYuNTA1IDcuMzQ2LTEwLjE1MiAxMC40Mi0yOC42OSAxMC40Mi00MC4wNTYgMC0xMS43NjkgNy43NTUtMjUuNDQgMTUuNTEyLTI1LjkwNy02LjkxNSAxMS4zOTYgMS43OSAyMS4xNjUgOS41MyA0NS40IDIuOTAyIDkuMTAzIDIuNTMyIDI0LjQyMyA0Ljc3MiAzNC4xMzguNzQ0LTIwLjE3OCA0LjIxMy00OS42MiAxNy4wMTQtNTkuNzg0LTUuNjQ3IDEyLjguODM2IDI4LjgxOCA1LjI3IDM2LjUxOCA3LjE1NCAxMi40MjQgMTEuNDkgMjEuODM2IDExLjQ5IDM5LjYzOCAwIDExLjkzNi00LjQwNyAyMy4xNzMtMTEuODQgMzEuOTU4IDguNDUyLTEuNTg2IDE0LjI4OS0zLjAxNiAxNC4yODktMy4wMTZsMjcuNDUtNS4zNTVjLjAwMi0uMDAyLTMuOTg3IDE2LjQwMS0xOS4zMTQgMzIuMTk3eiIgZmlsbD0iI0RBNEUzMSIvPjwvc3ZnPg== mediatype: image/svg+xml install: strategy: deployment spec: permissions: - serviceAccountName: prometheus-k8s rules: - apiGroups: [""] resources: - nodes - services - endpoints - pods verbs: ["get", "list", "watch"] - apiGroups: [""] resources: - configmaps verbs: ["get"] - serviceAccountName: prometheus-operator-0-14-0 rules: - apiGroups: - apiextensions.k8s.io resources: - customresourcedefinitions verbs: ["get", "list"] - apiGroups: - monitoring.coreos.com resources: - alertmanagers - prometheuses - servicemonitors verbs: - "*" - apiGroups: - apps resources: - statefulsets verbs: ["*"] - apiGroups: [""] resources: - configmaps - secrets verbs: ["*"] - apiGroups: [""] resources: - pods verbs: ["list", "delete"] - apiGroups: [""] resources: - services - endpoints verbs: ["get", "create", "update"] - apiGroups: [""] resources: - nodes verbs: ["list", "watch"] - apiGroups: [""] resources: - namespaces verbs: ['list'] deployments: - name: prometheus-operator spec: replicas: 1 selector: matchLabels: k8s-app: prometheus-operator template: metadata: labels: k8s-app: prometheus-operator spec: serviceAccount: prometheus-operator-0-14-0 containers: - name: prometheus-operator image: quay.io/coreos/prometheus-operator@sha256:0e92dd9b5789c4b13d53e1319d0a6375bcca4caaf0d698af61198061222a576d command: - sh - -c - > /bin/operator --namespace=$K8S_NAMESPACE --crd-apigroup monitoring.coreos.com --labels alm-status-descriptors=prometheusoperator.0.15.0,alm-owner-prometheus=prometheusoperator --kubelet-service=kube-system/kubelet --config-reloader-image=quay.io/coreos/configmap-reload:v0.0.1 env: - name: K8S_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace ports: - containerPort: 8080 name: http resources: limits: cpu: 200m memory: 100Mi requests: cpu: 100m memory: 50Mi maturity: alpha version: 0.15.0 customresourcedefinitions: owned: - name: prometheuses.monitoring.coreos.com version: v1 kind: Prometheus displayName: Prometheus description: A running Prometheus instance resources: - kind: StatefulSet version: v1beta2 - kind: Pod version: v1 specDescriptors: - description: Desired number of Pods for the cluster displayName: Size path: replicas x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - description: A selector for the ConfigMaps from which to load rule files displayName: Rule Config Map Selector path: ruleSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:selector:ConfigMap' - description: ServiceMonitors to be selected for target discovery displayName: Service Monitor Selector path: serviceMonitorSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:selector:ServiceMonitor' - description: The ServiceAccount to use to run the Prometheus pods displayName: Service Account path: serviceAccountName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:ServiceAccount' - description: Limits describes the minimum/maximum amount of compute resources required/allowed displayName: Resource Requirements path: resources x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:resourceRequirements' statusDescriptors: - description: The current number of Pods for the cluster displayName: Cluster Size path: replicas - path: prometheusSelector displayName: Prometheus Service Selector description: Label selector to find the service that routes to this prometheus x-descriptors: - 'urn:alm:descriptor:label:selector' - name: servicemonitors.monitoring.coreos.com version: v1 kind: ServiceMonitor displayName: Service Monitor description: Configures prometheus to monitor a particular k8s service resources: - kind: Pod version: v1 specDescriptors: - description: Selector to select which namespaces the Endpoints objects are discovered from displayName: Monitoring Namespaces path: namespaceSelector x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:namespaceSelector' - description: The label to use to retrieve the job name from displayName: Job Label path: jobLabel x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:label' - description: A list of endpoints allowed as part of this ServiceMonitor displayName: Endpoints path: endpoints x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:endpointList' - name: alertmanagers.monitoring.coreos.com version: v1 kind: Alertmanager displayName: Alert Manager description: Configures an Alert Manager for the namespace resources: - kind: StatefulSet version: v1beta2 - kind: Pod version: v1 specDescriptors: - description: Desired number of Pods for the cluster displayName: Size path: replicas x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' - description: Limits describes the minimum/maximum amount of compute resources required/allowed displayName: Resource Requirements path: resources x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:resourceRequirements' - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: name: vault-operator.0.1.9 namespace: placeholder annotations: tectonic-visibility: ocs alm-examples: '[{"apiVersion":"vault.security.coreos.com/v1alpha1","kind":"VaultService","metadata":{"name":"example"},"spec":{"nodes":2,"version":"0.9.1-0"}}]' labels: alm-catalog: tectonic-ocs spec: displayName: Vault description: | An encrypted, multi-tentant secure secret store. Vault handles the lifecycle of your secrets: leasing, key revocation, key rolling, and auditing. _The Vault Open Cloud Service is Public Alpha. The goal before Beta is for additional user testing and minor bug fixes._ ### Unsealing and using Vault Once a Vault instance is running, it must be initalized and "unsealed". Afterwards, your software can use the automatically created Kubernetes Service and Secret to communicate with it. [Read the complete guide to using the Vault Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/vault-ocs.html) ### Supported Features **Secure by Default** Hands-free automated creation of TLS certificates between all components ensure all best practices are followed for secret security. Further, the API makes unseal operations easy. **Highly available** Multiple instances of Vault are clustered together via an etcd backend and secured. **Safe Upgrades** Rolling out a new Vault version is as easy as updating the Vault Cluster definition. Everything is automatically handled using Vault best practices while pausing for unseal tokens. keywords: ['vault', 'secret', 'encryption'] maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc links: - name: Vault Project url: https://www.vaultproject.io/ labels: alm-status-descriptors: vault-operator.0.1.9 alm-owner-vault: vault-operator operated-by: vault-operator selector: matchLabels: alm-owner-vault: vault-operator operated-by: vault-operator icon: - base64data: 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ICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE3LTA5LTA2VDE1OjMxOjU2LTA0OjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNy0wOS0wNlQxNTozMTo1Ni0wNDowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjFlMjY4MTE5LWU2NmYtNGJjNC1hZTI0LThiMTViNTg3MzE2MjwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjczODM4YzJiLWQzYzgtMTE3YS1iNTYyLTllNjU3MTBkNzc5YzwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjQ1MjdmNDhmLTc2MGMtNGRhYi04NTJkLTNkNGZiOTA4ZmEzNjwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo0NTI3ZjQ4Zi03NjBjLTRkYWItODUyZC0zZDRmYjkwOGZhMzY8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDoxZTI2ODExOS1lNjZmLTRiYzQtYWUyNC04YjE1YjU4NzMxNjI8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5EaXNwbGF5PC9waG90b3Nob3A6SUNDUHJvZmlsZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjY0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjU5PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg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 mediatype: image/png install: strategy: deployment spec: permissions: - serviceAccountName: vault-operator rules: - apiGroups: - etcd.database.coreos.com resources: - etcdclusters verbs: - "*" - apiGroups: - vault.security.coreos.com resources: - vaultservices verbs: - "*" - apiGroups: - storage.k8s.io resources: - storageclasses verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - events - configmaps - secrets verbs: - "*" - apiGroups: - apps resources: - deployments verbs: - "*" deployments: - name: vault-operator spec: replicas: 1 selector: matchLabels: name: vault-operator template: metadata: labels: name: vault-operator spec: serviceAccountName: vault-operator containers: - name: vault-operator image: quay.io/coreos/vault-operator@sha256:945a0a6d88cf6fa2bce9a83019a2a64f74d89fc8281301a4259f3302eabc79e6 env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name version: 0.1.9 replaces: vault-operator.0.1.5 maturity: alpha customresourcedefinitions: owned: - name: vaultservices.vault.security.coreos.com version: v1alpha1 kind: VaultService displayName: Vault Service description: A running Vault instance, backed by an Etcd Cluster resources: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster - kind: Service version: v1 - kind: ConfigMap version: v1 - kind: Secret version: v1 - kind: Deployment version: v1beta2 - kind: ReplicaSet version: v1beta2 - kind: Pod version: v1 specDescriptors: - description: The desired number of Pods for the cluster displayName: Size path: nodes x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' statusDescriptors: - description: The service at which the running Vault cluster can be accessed. displayName: Service path: serviceName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Service' - description: The port at which the Vault cluster is running under the service. displayName: Client Port path: clientPort required: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster displayName: etcd Cluster description: Represents a cluster of etcd nodes. - name: etcdbackups.etcd.database.coreos.com version: v1beta2 kind: EtcdBackup displayName: etcd Backup description: Represents a backup for an etcd cluster - name: etcdrestores.etcd.database.coreos.com version: v1beta2 kind: EtcdRestore displayName: etcd Restore description: Represents one try of restoring etcd cluster from previous backup - #! validate-crd: ./deploy/chart/templates/03-clusterserviceversion.crd.yaml #! parse-kind: ClusterServiceVersion apiVersion: app.coreos.com/v1alpha1 kind: ClusterServiceVersion-v1 metadata: namespace: placeholder name: vault-operator.0.1.5 annotations: tectonic-visibility: ocs spec: displayName: Vault description: | An encrypted, multi-tentant secure secret store. Vault handles the lifecycle of your secrets: leasing, key revocation, key rolling, and auditing. _The Vault Open Cloud Service is Public Alpha. The goal before Beta is for additional user testing and minor bug fixes._ ### Unsealing and using Vault Once a Vault instance is running, it must be initalized and "unsealed". Afterwards, your software can use the automatically created Kubernetes Service and Secret to communicate with it. [Read the complete guide to using the Vault Open Cloud Service](https://coreos.com/tectonic/docs/latest/alm/vault-ocs.html) ### Supported Features **Secure by Default** Hands-free automated creation of TLS certificates between all components ensure all best practices are followed for secret security. Further, the API makes unseal operations easy. **Highly available** Multiple instances of Vault are clustered together via an etcd backend and secured. **Safe Upgrades** Rolling out a new Vault version is as easy as updating the Vault Cluster definition. Everything is automatically handled using Vault best practices while pausing for unseal tokens. keywords: ['vault', 'secret', 'encryption'] maintainers: - name: CoreOS, Inc email: support@coreos.com provider: name: CoreOS, Inc links: - name: Vault Project url: https://www.vaultproject.io/ labels: alm-status-descriptors: vault-operator.0.1.5 alm-owner-vault: vault-operator operated-by: vault-operator selector: matchLabels: alm-owner-vault: vault-operator operated-by: vault-operator icon: - base64data: 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ICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgICAgICAgICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE3LTA5LTA2VDE1OjMxOjU2LTA0OjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNy0wOS0wNlQxNTozMTo1Ni0wNDowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjFlMjY4MTE5LWU2NmYtNGJjNC1hZTI0LThiMTViNTg3MzE2MjwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjczODM4YzJiLWQzYzgtMTE3YS1iNTYyLTllNjU3MTBkNzc5YzwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOjQ1MjdmNDhmLTc2MGMtNGRhYi04NTJkLTNkNGZiOTA4ZmEzNjwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo0NTI3ZjQ4Zi03NjBjLTRkYWItODUyZC0zZDRmYjkwOGZhMzY8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDoxZTI2ODExOS1lNjZmLTRiYzQtYWUyNC04YjE1YjU4NzMxNjI8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTctMDktMDZUMTU6MzE6NTYtMDQ6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE1IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2UvcG5nPC9kYzpmb3JtYXQ+CiAgICAgICAgIDxwaG90b3Nob3A6Q29sb3JNb2RlPjM8L3Bob3Rvc2hvcDpDb2xvck1vZGU+CiAgICAgICAgIDxwaG90b3Nob3A6SUNDUHJvZmlsZT5EaXNwbGF5PC9waG90b3Nob3A6SUNDUHJvZmlsZT4KICAgICAgICAgPHRpZmY6T3JpZW50YXRpb24+MTwvdGlmZjpPcmllbnRhdGlvbj4KICAgICAgICAgPHRpZmY6WFJlc29sdXRpb24+NzIwMDAwLzEwMDAwPC90aWZmOlhSZXNvbHV0aW9uPgogICAgICAgICA8dGlmZjpZUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WVJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOlJlc29sdXRpb25Vbml0PjI8L3RpZmY6UmVzb2x1dGlvblVuaXQ+CiAgICAgICAgIDxleGlmOkNvbG9yU3BhY2U+NjU1MzU8L2V4aWY6Q29sb3JTcGFjZT4KICAgICAgICAgPGV4aWY6UGl4ZWxYRGltZW5zaW9uPjY0PC9leGlmOlBpeGVsWERpbWVuc2lvbj4KICAgICAgICAgPGV4aWY6UGl4ZWxZRGltZW5zaW9uPjU5PC9leGlmOlBpeGVsWURpbWVuc2lvbj4KICAgICAgPC9yZGY6RGVzY3JpcHRpb24+CiAgIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg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 mediatype: image/png install: strategy: deployment spec: permissions: - serviceAccountName: vault-operator rules: - apiGroups: - etcd.database.coreos.com resources: - etcdclusters verbs: - "*" - apiGroups: - vault.security.coreos.com resources: - vaultservices verbs: - "*" - apiGroups: - storage.k8s.io resources: - storageclasses verbs: - "*" - apiGroups: - "" resources: - pods - services - endpoints - persistentvolumeclaims - events - configmaps - secrets verbs: - "*" - apiGroups: - apps resources: - deployments verbs: - "*" deployments: - name: vault-operator spec: replicas: 1 selector: matchLabels: name: vault-operator template: metadata: labels: name: vault-operator spec: serviceAccountName: vault-operator containers: - name: vault-operator image: quay.io/coreos/vault-operator@sha256:74036811bc5d6cc1a136d8cc6d5577db67f29ba95eba02fbf0c3a8d2357dc8fe env: - name: MY_POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MY_POD_NAME valueFrom: fieldRef: fieldPath: metadata.name version: 0.1.5 maturity: alpha customresourcedefinitions: owned: - name: vaultservices.vault.security.coreos.com version: v1alpha1 kind: VaultService displayName: Vault Service description: A running Vault instance, backed by an Etcd Cluster resources: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster - kind: Service version: v1 - kind: ConfigMap version: v1 - kind: Secret version: v1 - kind: Pod version: v1 specDescriptors: - description: The desired number of Pods for the cluster displayName: Size path: nodes x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podCount' statusDescriptors: - description: The status of each of the node Pods for the Vault cluster. displayName: Node Status path: nodes x-descriptors: - 'urn:alm:descriptor:com.tectonic.ui:podStatuses' - description: The service at which the running Vault cluster can be accessed. displayName: Service path: serviceName x-descriptors: - 'urn:alm:descriptor:io.kubernetes:Service' - description: The port at which the Vault cluster is running under the service. displayName: Client Port path: clientPort required: - name: etcdclusters.etcd.database.coreos.com version: v1beta2 kind: EtcdCluster displayName: etcd Cluster description: Represents a cluster of etcd nodes. packages: |- - #! package-manifest: ./deploy/chart/catalog_resources/ocs/etcdoperator.v0.9.2.clusterserviceversion.yaml packageName: etcd channels: - name: alpha currentCSV: etcdoperator.v0.9.2 - #! package-manifest: ./deploy/chart/catalog_resources/ocs/prometheusoperator.0.15.0.clusterserviceversion.yaml packageName: prometheus channels: - name: alpha currentCSV: prometheusoperator.0.15.0 - #! package-manifest: ./deploy/chart/catalog_resources/ocs/vaultoperator.0.1.9.clusterserviceversion.yaml packageName: vault channels: - name: alpha currentCSV: vault-operator.0.1.9
83.077858
27,942
0.761216
f7245d89e5392989f0ca72759b92356a75443fea
378
yaml
YAML
docker-and-kubernetes/complex/k8s/database-persistent-volume-claim.yaml
sund0g/docker-tutorial
fd076b817d72fb7835453fc1b17fb9e104b2a793
[ "Apache-2.0" ]
null
null
null
docker-and-kubernetes/complex/k8s/database-persistent-volume-claim.yaml
sund0g/docker-tutorial
fd076b817d72fb7835453fc1b17fb9e104b2a793
[ "Apache-2.0" ]
null
null
null
docker-and-kubernetes/complex/k8s/database-persistent-volume-claim.yaml
sund0g/docker-tutorial
fd076b817d72fb7835453fc1b17fb9e104b2a793
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: PersistentVolumeClaim metadata: name: database-persistent-volume-claim spec: # If this Claim is attached to a Pod, k8s must find # an instance of storage, (a slice of the hard drive) # that meets the requirements of this spec. accessModes: - ReadWriteOnce resources: requests: storage: 2Gi
31.5
71
0.645503
f72486308ba5fa27e1a1075cfd9289e1aabc36ba
652
yaml
YAML
pkg/sync/v71/data/ClusterRole.rbac.authorization.k8s.io/system-controller-node-controller.yaml
troy0820/openshift-azure
2760ef235865f6bc17d359bc74f8d5059ebb0386
[ "Apache-2.0" ]
55
2018-08-03T04:38:28.000Z
2021-07-26T16:42:09.000Z
pkg/sync/v71/data/ClusterRole.rbac.authorization.k8s.io/system-controller-node-controller.yaml
troy0820/openshift-azure
2760ef235865f6bc17d359bc74f8d5059ebb0386
[ "Apache-2.0" ]
2,257
2018-07-26T21:29:25.000Z
2022-03-27T06:07:22.000Z
pkg/sync/v71/data/ClusterRole.rbac.authorization.k8s.io/system-controller-node-controller.yaml
troy0820/openshift-azure
2760ef235865f6bc17d359bc74f8d5059ebb0386
[ "Apache-2.0" ]
62
2018-07-24T12:16:53.000Z
2021-12-09T18:02:58.000Z
apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: annotations: rbac.authorization.kubernetes.io/autoupdate: "true" labels: kubernetes.io/bootstrapping: rbac-defaults name: system:controller:node-controller rules: - apiGroups: - "" resources: - nodes verbs: - delete - get - list - patch - update - apiGroups: - "" resources: - nodes/status verbs: - patch - update - apiGroups: - "" resources: - pods/status verbs: - update - apiGroups: - "" resources: - pods verbs: - delete - list - apiGroups: - "" resources: - events verbs: - create - patch - update
13.583333
55
0.631902
f724a9c20e9b69deb80d089f06ae59a85f566c61
91
yaml
YAML
manifests/secret.yaml
yokaze/kind-manifests
1779d6812cbe68d11381380a2645f5541126c579
[ "MIT" ]
1
2021-12-27T13:04:39.000Z
2021-12-27T13:04:39.000Z
manifests/secret.yaml
yokaze/kind-manifests
1779d6812cbe68d11381380a2645f5541126c579
[ "MIT" ]
null
null
null
manifests/secret.yaml
yokaze/kind-manifests
1779d6812cbe68d11381380a2645f5541126c579
[ "MIT" ]
null
null
null
apiVersion: v1 data: sample: c2FtcGxl kind: Secret metadata: name: sample type: Opaque
11.375
18
0.747253
f724bd371aa0ba77c01b342b409ad75b4aee3254
624
yaml
YAML
cicd_tools/argocd/rbac-test/project2-app/configmap.yaml
justindav1s/product_backend
8b7f0251214624ae77a6a0eca8749329aa442c2c
[ "Apache-2.0" ]
7
2018-05-15T06:51:36.000Z
2021-01-09T08:49:08.000Z
cicd_tools/argocd/rbac-test/project2-app/configmap.yaml
justindav1s/product_backend
8b7f0251214624ae77a6a0eca8749329aa442c2c
[ "Apache-2.0" ]
12
2020-07-04T17:17:54.000Z
2022-02-26T14:47:59.000Z
cicd_tools/argocd/rbac-test/project2-app/configmap.yaml
justindav1s/product_backend
8b7f0251214624ae77a6a0eca8749329aa442c2c
[ "Apache-2.0" ]
6
2019-01-24T19:49:57.000Z
2020-12-29T09:32:04.000Z
apiVersion: v1 kind: ConfigMap metadata: labels: app: product name: product-config data: application.properties: |- quarkus.log.console.enable=true quarkus.log.console.format=%d{HH:mm:ss} %-5p [%c{2.}] (%t) %s%e%n quarkus.log.console.level=DEBUG quarkus.log.console.color=false quarkus.log.console.json=false quarkus.log.category."io.quarkus".level=INFO sleep.time.ms=2 active.profile=dev config.test.data.1=val2 lastCommit=8993654 lastCommit=f012617 lastCommit=2ecf4e7 lastCommit=507dcf1 lastCommit=507dcf1 lastCommit=caeabbd lastCommit=563766c
21.517241
69
0.701923
f724cef28a8bf1ce86744d23f191c6ed0e56f80e
564
yaml
YAML
metricbeat/module/kubernetes/_meta/test/docs/02_objects/cronjob.yaml
luftwurzel/beats
c52699616a8a77de52a24344e0976dac0a9cfb28
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
metricbeat/module/kubernetes/_meta/test/docs/02_objects/cronjob.yaml
luftwurzel/beats
c52699616a8a77de52a24344e0976dac0a9cfb28
[ "ECL-2.0", "Apache-2.0" ]
5
2021-12-08T15:00:30.000Z
2022-03-28T06:45:16.000Z
metricbeat/module/kubernetes/_meta/test/docs/02_objects/cronjob.yaml
luftwurzel/beats
c52699616a8a77de52a24344e0976dac0a9cfb28
[ "ECL-2.0", "Apache-2.0" ]
null
null
null
# Cronjob that will execute each minute. # It will print a message and sleep (reporting being active) for 5 seconds apiVersion: batch/v1 kind: CronJob metadata: name: mycronjob spec: schedule: "*/1 * * * *" jobTemplate: spec: template: spec: containers: - name: mycron-container image: alpine imagePullPolicy: IfNotPresent command: ['sh', '-c', 'echo elastic world ; sleep 5'] restartPolicy: OnFailure terminationGracePeriodSeconds: 0 concurrencyPolicy: Allow
24.521739
74
0.624113
f72514838cf981868f000d112128640540064670
206
yaml
YAML
namespaces/cloud-platform-live-0.k8s.integration.dsd.io/nickp-test-dev/03-resourcequota.yaml
umaar/cloud-platform-environments
c0fab9757b5fe340998457e182424ac1027b7c5f
[ "MIT" ]
null
null
null
namespaces/cloud-platform-live-0.k8s.integration.dsd.io/nickp-test-dev/03-resourcequota.yaml
umaar/cloud-platform-environments
c0fab9757b5fe340998457e182424ac1027b7c5f
[ "MIT" ]
null
null
null
namespaces/cloud-platform-live-0.k8s.integration.dsd.io/nickp-test-dev/03-resourcequota.yaml
umaar/cloud-platform-environments
c0fab9757b5fe340998457e182424ac1027b7c5f
[ "MIT" ]
null
null
null
apiVersion: v1 kind: ResourceQuota metadata: name: namespace-quota namespace: nickp-test-dev spec: hard: requests.cpu: 3000m requests.memory: 6Gi limits.cpu: 6000m limits.memory: 12Gi
17.166667
27
0.713592
f725350d94ddccb82b638d87fa0d05a8c5877395
580
yaml
YAML
kubernetes/deployment.yaml
vasilax/ecsdemo-nodejs
6d8f2eca98d185380730191d0b9c40b772cf3c6f
[ "MIT" ]
null
null
null
kubernetes/deployment.yaml
vasilax/ecsdemo-nodejs
6d8f2eca98d185380730191d0b9c40b772cf3c6f
[ "MIT" ]
null
null
null
kubernetes/deployment.yaml
vasilax/ecsdemo-nodejs
6d8f2eca98d185380730191d0b9c40b772cf3c6f
[ "MIT" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: ecsdemo-nodejs labels: app: ecsdemo-nodejs namespace: ecsdemo-nodejs spec: replicas: 6 selector: matchLabels: app: ecsdemo-nodejs strategy: rollingUpdate: maxSurge: 25% maxUnavailable: 25% type: RollingUpdate template: metadata: labels: app: ecsdemo-nodejs spec: containers: - image: brentley/ecsdemo-nodejs:latest imagePullPolicy: Always name: ecsdemo-nodejs ports: - containerPort: 3000 protocol: TCP
19.333333
45
0.631034
f725c1edb02ba1bd1ea939385f7b0a11d552eac0
594
yaml
YAML
kubernetes-nimbus-rc.yaml
guanbear/docker-storm-cluster
68c8b2c6b481111dee79d5f54b316eea71b4d23d
[ "MIT" ]
1
2019-07-26T02:54:18.000Z
2019-07-26T02:54:18.000Z
kubernetes-nimbus-rc.yaml
guanbear/docker-storm-cluster
68c8b2c6b481111dee79d5f54b316eea71b4d23d
[ "MIT" ]
null
null
null
kubernetes-nimbus-rc.yaml
guanbear/docker-storm-cluster
68c8b2c6b481111dee79d5f54b316eea71b4d23d
[ "MIT" ]
null
null
null
apiVersion: v1 kind: ReplicationController metadata: name: apache-storm-nimbus spec: replicas: 1 selector: storm: nimbus template: metadata: labels: storm: nimbus app: storm spec: containers: - name: zookeeper image: zcguan/storm-cluster:latest env: - name: CONFIGURE_ZOOKEEPER value: "true" - name: STORM_CMD value: "nimbus" volumeMounts: - name: storm-data mountPath: /opt/apache-storm/storm-local volumes: - name: storm-data emptyDir: {}
19.8
50
0.572391
f725e748aae0d87c5bbf63d56ec6879b4e3c55fd
88
yaml
YAML
operators/sxapi-operator/0.1.3/manifests/sxapi-operator-controller-manager_v1_serviceaccount.yaml
startxfr/community-operators-ocp
8c5b1a71bc1cc7befc5e6bada0e3720eb175d51e
[ "Apache-2.0" ]
null
null
null
operators/sxapi-operator/0.1.3/manifests/sxapi-operator-controller-manager_v1_serviceaccount.yaml
startxfr/community-operators-ocp
8c5b1a71bc1cc7befc5e6bada0e3720eb175d51e
[ "Apache-2.0" ]
null
null
null
operators/sxapi-operator/0.1.3/manifests/sxapi-operator-controller-manager_v1_serviceaccount.yaml
startxfr/community-operators-ocp
8c5b1a71bc1cc7befc5e6bada0e3720eb175d51e
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: ServiceAccount metadata: name: sxapi-operator-controller-manager
17.6
41
0.818182
f7264917a82d49f15ffe0da49b19211fc6288b48
484
yaml
YAML
config-root/namespaces/jx/jxboot-helmfile-resources/charts/controllerbuild/serviceaccount.yaml
rawlingsj/test-terraform-gsm1
38b6ed42ef3a863810629ea30adac7ec38bacd45
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/jxboot-helmfile-resources/charts/controllerbuild/serviceaccount.yaml
rawlingsj/test-terraform-gsm1
38b6ed42ef3a863810629ea30adac7ec38bacd45
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/jxboot-helmfile-resources/charts/controllerbuild/serviceaccount.yaml
rawlingsj/test-terraform-gsm1
38b6ed42ef3a863810629ea30adac7ec38bacd45
[ "Apache-2.0" ]
null
null
null
# Source: jxboot-helmfile-resources/charts/controllerbuild/templates/serviceaccount.yaml apiVersion: v1 kind: ServiceAccount metadata: name: jxboot-helmfile-resources-controllerbuild labels: app: controllerbuild chart: controllerbuild-2.0.1143 release: jxboot-helmfile-resources heritage: Helm gitops.jenkins-x.io/pipeline: 'environment' annotations: iam.gke.io/gcp-service-account: tc-rocks-bc@jenkins-x-labs-bdd.iam.gserviceaccount.com namespace: jx
32.266667
90
0.77686
f72687c00c12a41eb94df246a71e79204fc82cb6
752
yaml
YAML
tekton/cronjobs/dogfooding/images/buildx-gcloud-nightly/cronjob.yaml
lbernick/plumbing
893ce8d95b48d07d1757328e6404edbcb026acb8
[ "Apache-2.0" ]
null
null
null
tekton/cronjobs/dogfooding/images/buildx-gcloud-nightly/cronjob.yaml
lbernick/plumbing
893ce8d95b48d07d1757328e6404edbcb026acb8
[ "Apache-2.0" ]
1
2021-12-03T15:43:51.000Z
2021-12-03T16:06:06.000Z
tekton/cronjobs/dogfooding/images/buildx-gcloud-nightly/cronjob.yaml
lbernick/plumbing
893ce8d95b48d07d1757328e6404edbcb026acb8
[ "Apache-2.0" ]
null
null
null
apiVersion: batch/v1beta1 kind: CronJob metadata: name: image-build-cron-trigger spec: schedule: "0 2 * * *" concurrencyPolicy: Forbid jobTemplate: spec: template: spec: initContainers: - name: git env: - name: GIT_REPOSITORY value: github.com/tektoncd/plumbing - name: GIT_REVISION value: main containers: - name: trigger env: - name: SINK_URL value: el-image-builder.default.svc.cluster.local:8080 - name: TARGET_IMAGE value: gcr.io/tekton-releases/dogfooding/buildx-gcloud - name: CONTEXT_PATH value: tekton/images/buildx-gcloud
26.857143
68
0.551862
f726975d34779948082cc1ea68a60f5751c3addf
153
yaml
YAML
k8s/resource/quota.yaml
Monkey-Mouse/mo2-compose
7604355c494f3d1aa82d4861726ba0023b40e39b
[ "MIT" ]
1
2021-05-08T14:14:14.000Z
2021-05-08T14:14:14.000Z
k8s/resource/quota.yaml
Monkey-Mouse/mo2-k8s
7604355c494f3d1aa82d4861726ba0023b40e39b
[ "MIT" ]
null
null
null
k8s/resource/quota.yaml
Monkey-Mouse/mo2-k8s
7604355c494f3d1aa82d4861726ba0023b40e39b
[ "MIT" ]
null
null
null
apiVersion: v1 kind: ResourceQuota metadata: name: default-limit spec: hard: requests.cpu: "4" limits.cpu: "8" memory: 4Gi pods: "30"
15.3
21
0.640523
f726c4bcf0e662786651e84acb792f6cbde5006a
234
yml
YAML
first-app/helloworld.yml
oworldbankru/kubernetes-course
3c024ff7550a958b22831a1a0322b2e530b6f7df
[ "MIT" ]
null
null
null
first-app/helloworld.yml
oworldbankru/kubernetes-course
3c024ff7550a958b22831a1a0322b2e530b6f7df
[ "MIT" ]
null
null
null
first-app/helloworld.yml
oworldbankru/kubernetes-course
3c024ff7550a958b22831a1a0322b2e530b6f7df
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: nodehelloworld.example.com labels: app: helloworld spec: containers: - name: k8s-demo image: diyblockchain/k8s-demo ports: - name: nodejs-port containerPort: 3000
16.714286
34
0.683761
f726d1e308a346202c976f129a32194526d15d7c
1,117
yaml
YAML
tools/monitoring/grafana/podsecuritypolicy.yaml
californi/Microcontrollers_Kubow
ac9ba52e91222181bac35cc3444813440e9fe711
[ "MIT" ]
21
2019-04-29T18:51:47.000Z
2022-02-16T00:37:16.000Z
tools/monitoring/grafana/podsecuritypolicy.yaml
californi/Microcontrollers_Kubow
ac9ba52e91222181bac35cc3444813440e9fe711
[ "MIT" ]
3
2020-05-15T21:56:21.000Z
2021-06-27T14:37:30.000Z
tools/monitoring/grafana/podsecuritypolicy.yaml
californi/Microcontrollers_Kubow
ac9ba52e91222181bac35cc3444813440e9fe711
[ "MIT" ]
4
2019-07-05T06:55:18.000Z
2022-02-11T20:04:23.000Z
apiVersion: policy/v1beta1 kind: PodSecurityPolicy metadata: name: grafana labels: app: grafana annotations: seccomp.security.alpha.kubernetes.io/allowedProfileNames: 'docker/default' seccomp.security.alpha.kubernetes.io/defaultProfileName: 'docker/default' apparmor.security.beta.kubernetes.io/allowedProfileNames: 'runtime/default' apparmor.security.beta.kubernetes.io/defaultProfileName: 'runtime/default' spec: privileged: false allowPrivilegeEscalation: false requiredDropCapabilities: # Default set from Docker, without DAC_OVERRIDE or CHOWN - FOWNER - FSETID - KILL - SETGID - SETUID - SETPCAP - NET_BIND_SERVICE - NET_RAW - SYS_CHROOT - MKNOD - AUDIT_WRITE - SETFCAP volumes: - 'configMap' - 'emptyDir' - 'projected' - 'secret' - 'downwardAPI' - 'persistentVolumeClaim' hostNetwork: false hostIPC: false hostPID: false runAsUser: rule: 'RunAsAny' seLinux: rule: 'RunAsAny' supplementalGroups: rule: 'RunAsAny' fsGroup: rule: 'RunAsAny' readOnlyRootFilesystem: false
23.765957
79
0.70009
f72763004d59549426257d7c4b5179d13c3f7805
417
yml
YAML
demo/demo-claim.yml
tonylauCN/kubeadm-playbook
fcf9386b4a98502adc9d7099055f871e996d3501
[ "Unlicense" ]
580
2017-04-19T04:00:51.000Z
2022-03-31T13:50:52.000Z
demo/demo-claim.yml
tonylauCN/kubeadm-playbook
fcf9386b4a98502adc9d7099055f871e996d3501
[ "Unlicense" ]
75
2017-05-10T17:31:41.000Z
2022-02-10T22:05:07.000Z
demo/demo-claim.yml
tonylauCN/kubeadm-playbook
fcf9386b4a98502adc9d7099055f871e996d3501
[ "Unlicense" ]
110
2017-04-27T14:12:17.000Z
2022-03-31T11:21:29.000Z
kind: PersistentVolumeClaim apiVersion: v1 metadata: name: demo-claim #annotations: # When not defined, the default storageClass is used (if any defined) #volume.beta.kubernetes.io/storage-class: rook-block #volume.beta.kubernetes.io/storage-class: thin #vsphere #volume.beta.kubernetes.io/storage-class: nfs.k8s spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Mi
27.8
85
0.736211
f727c021616e455c26f3a4f97345cf0008b6e2b3
143
yaml
YAML
built-in-references/Kubernetes/perf/violations/violation647.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation647.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation647.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: image-demo-647 spec: containers: - name: nginx image: nginx #ritaacr.azurecr.io/nginx:latest
17.875
49
0.72028
f7280e37138fc4fb3a2db306eb4cef785fb624ab
216
yaml
YAML
quota/compute-resources.yaml
jianbo-zh/k8sbird
86307bf30a81638b71fd3c666aeca1d2e7de3d96
[ "MIT" ]
null
null
null
quota/compute-resources.yaml
jianbo-zh/k8sbird
86307bf30a81638b71fd3c666aeca1d2e7de3d96
[ "MIT" ]
null
null
null
quota/compute-resources.yaml
jianbo-zh/k8sbird
86307bf30a81638b71fd3c666aeca1d2e7de3d96
[ "MIT" ]
null
null
null
apiVersion: v1 kind: ResourceQuota metadata: name: compute-resources namespace: quota-example spec: hard: pods: "4" requests.cpu: "1" requests.memory: 1Gi limits.cpu: "2" limits.memory: 2Gi
16.615385
26
0.671296
f7283aaf62311467982f7158f81a6e80a5c718d1
1,216
yaml
YAML
test/DLT-jobs/test1_maskrcnn_coco.yaml
YHDING23/alnair
97c713d7608863e6e5411226d651dd07175ce88f
[ "Apache-2.0" ]
null
null
null
test/DLT-jobs/test1_maskrcnn_coco.yaml
YHDING23/alnair
97c713d7608863e6e5411226d651dd07175ce88f
[ "Apache-2.0" ]
null
null
null
test/DLT-jobs/test1_maskrcnn_coco.yaml
YHDING23/alnair
97c713d7608863e6e5411226d651dd07175ce88f
[ "Apache-2.0" ]
null
null
null
apiVersion: batch/v1 kind: Job metadata: name: maskrcnn-image-seg spec: template: spec: containers: - name: image-seg image: centaurusinfra/test1_maskrcnn command: - python #args: ["-c", "while true; do sleep 10; done;"] args: - -m - torch.distributed.launch - --nproc_per_node - "2" - tools/train_net.py - --config-file - configs/e2e_mask_rcnn_R_50_FPN_1x.yaml - --max_steps - "100" - OUTPUT_DIR - /results resources: limits: nvidia.com/gpu: 2 volumeMounts: - mountPath: /datasets/data name: remote-data - mountPath: /results name: remote-results - mountPath: /dev/shm name: dshm volumes: - name: remote-data hostPath: path: /nfs_1/alnair/pytorch/segmentation/maskrcnn/coco_dataset/ type: Directory - name: remote-results hostPath: path: /nfs_1/alnair/results # network drive type: Directory - name: dshm emptyDir: medium: Memory restartPolicy: Never backoffLimit: 0
24.32
73
0.537829
f728771a9369a55445d2d47363817cc682c59e45
144
yaml
YAML
built-in-references/Kubernetes/perf/violations/violation6685.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation6685.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
built-in-references/Kubernetes/perf/violations/violation6685.yaml
sw47/azure-policy
4a38e4cb4047b5364902653f0defe45f1b21bc61
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: image-demo-6685 spec: containers: - name: nginx image: nginx #ritaacr.azurecr.io/nginx:latest
18
49
0.722222
f728a636db9d9dafa8ddcb6a4e5f257bf9769996
587
yaml
YAML
config-root/namespaces/jx/jxboot-helmfile-resources/hook-ingress.yaml
ajisha-sb/repojenkinsx
8f449d222d33e87114bbf5fec72b1956fc5c8c51
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/jxboot-helmfile-resources/hook-ingress.yaml
ajisha-sb/repojenkinsx
8f449d222d33e87114bbf5fec72b1956fc5c8c51
[ "Apache-2.0" ]
null
null
null
config-root/namespaces/jx/jxboot-helmfile-resources/hook-ingress.yaml
ajisha-sb/repojenkinsx
8f449d222d33e87114bbf5fec72b1956fc5c8c51
[ "Apache-2.0" ]
null
null
null
# Source: jxboot-helmfile-resources/templates/700-hook-ing.yaml apiVersion: networking.k8s.io/v1 kind: Ingress metadata: annotations: kubernetes.io/ingress.class: nginx meta.helm.sh/release-name: 'jxboot-helmfile-resources' name: hook namespace: jx labels: gitops.jenkins-x.io/pipeline: 'namespaces' spec: rules: - http: paths: - pathType: ImplementationSpecific backend: service: name: hook port: number: 80 path: "/hook" host: hook-jx.vismaya.lan
24.458333
63
0.597956
f7290830fe97eede5887c65187988ae50a5e9edb
51,654
yaml
YAML
installers/k8s/summary-dashboard.yaml
ayoubbargueoui1996/osm-devops
b5973c2a4477354bb17a56fe39559f277a3a994a
[ "Apache-2.0" ]
null
null
null
installers/k8s/summary-dashboard.yaml
ayoubbargueoui1996/osm-devops
b5973c2a4477354bb17a56fe39559f277a3a994a
[ "Apache-2.0" ]
null
null
null
installers/k8s/summary-dashboard.yaml
ayoubbargueoui1996/osm-devops
b5973c2a4477354bb17a56fe39559f277a3a994a
[ "Apache-2.0" ]
null
null
null
# Copyright 2019 Minsait - Indra S.A. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Author: Jose Manuel Palacios (jmpalacios@minsait.com) # Author: Jose Antonio Martinez (jamartinezv@minsait.com) apiVersion: v1 kind: ConfigMap metadata: labels: grafana_dashboard: "1" name: osm-monitoring-osm-summary-grafana annotations: k8s-sidecar-target-directory: "/tmp/dashboards/Open Source MANO" data: osm-summary-dashboard.json: |- { "annotations": { "list": [ { "builtIn": 1, "datasource": "-- Grafana --", "enable": true, "hide": true, "iconColor": "rgba(0, 211, 255, 1)", "name": "Annotations & Alerts", "type": "dashboard" } ] }, "description": "OSM status summary", "editable": true, "gnetId": 6417, "graphTooltip": 1, "id": 10, "iteration": 1577638384562, "links": [ { "asDropdown": true, "icon": "external link", "includeVars": true, "keepTime": false, "tags": [], "title": "Dashboards", "type": "dashboards" } ], "panels": [ { "collapsed": false, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 0 }, "id": 2, "panels": [], "title": "Cluster Health", "type": "row" }, { "cacheTimeout": null, "colorBackground": false, "colorPrefix": false, "colorValue": false, "colors": [ "#299c46", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 100, "minValue": 0, "show": false, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 2, "w": 12, "x": 0, "y": 1 }, "id": 26, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": " Nodes", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "repeat": null, "repeatDirection": "h", "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "Value", "targets": [ { "expr": "sum(kube_node_info)", "format": "time_series", "instant": true, "intervalFactor": 1, "legendFormat": "", "refId": "B" } ], "thresholds": "1", "title": "", "type": "singlestat", "valueFontSize": "70%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#299c46", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 100, "minValue": 0, "show": false, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 2, "w": 12, "x": 12, "y": 1 }, "id": 30, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": " Pods Running", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(78, 203, 42, 0.28)", "full": false, "lineColor": "#629e51", "show": true }, "tableColumn": "", "targets": [ { "expr": "sum(kube_pod_status_phase)", "format": "time_series", "instant": true, "interval": "", "intervalFactor": 1, "refId": "A" } ], "thresholds": "", "title": "", "type": "singlestat", "valueFontSize": "70%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": true, "colorPrefix": false, "colorValue": false, "colors": [ "#56A64B", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 100, "minValue": 0, "show": false, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 2, "w": 12, "x": 0, "y": 3 }, "id": 24, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": " Nodes Unavailable", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "", "targets": [ { "expr": "sum(kube_node_info)-sum(kube_node_status_condition{condition=\"Ready\", status=\"true\"})", "format": "time_series", "instant": true, "intervalFactor": 1, "refId": "A" } ], "thresholds": "1,1", "title": "", "type": "singlestat", "valueFontSize": "70%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": true, "colorValue": false, "colors": [ "#56A64B", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 100, "minValue": 0, "show": false, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 2, "w": 12, "x": 12, "y": 3 }, "id": 55, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": " Pods not Ready", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "sum(kube_pod_status_phase{phase!=\"Running\"})", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "1", "timeFrom": null, "timeShift": null, "title": "", "type": "singlestat", "valueFontSize": "70%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "avg" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#299c46", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "percentunit", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 4, "w": 6, "x": 0, "y": 5 }, "id": 4, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "", "targets": [ { "expr": "sum(kube_pod_info) / sum(kube_node_status_allocatable_pods)", "format": "time_series", "intervalFactor": 1, "refId": "A" } ], "thresholds": "0.7,0.85", "title": "Pod Usage", "type": "singlestat", "valueFontSize": "80%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#299c46", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "percentunit", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 4, "w": 6, "x": 6, "y": 5 }, "id": 5, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "", "targets": [ { "expr": "sum(kube_pod_container_resource_requests_cpu_cores) / sum(kube_node_status_allocatable_cpu_cores)", "format": "time_series", "instant": true, "intervalFactor": 1, "refId": "A" } ], "thresholds": "0.7,0.85", "title": "CPU Usage", "type": "singlestat", "valueFontSize": "80%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#299c46", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "percentunit", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 4, "w": 6, "x": 12, "y": 5 }, "id": 6, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "", "targets": [ { "expr": "sum(kube_pod_container_resource_requests_memory_bytes) / sum(kube_node_status_allocatable_memory_bytes)", "format": "time_series", "instant": true, "intervalFactor": 1, "refId": "A" } ], "thresholds": "0.7,0.85", "title": "Memory Usage", "type": "singlestat", "valueFontSize": "80%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#73BF69", "rgba(237, 129, 40, 0.89)", "#d44a3a" ], "datasource": "Prometheus", "format": "percentunit", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": true }, "gridPos": { "h": 4, "w": 6, "x": 18, "y": 5 }, "id": 7, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false }, "tableColumn": "", "targets": [ { "expr": "(sum (node_filesystem_size_bytes) - sum (node_filesystem_free_bytes)) / sum (node_filesystem_size_bytes)", "format": "time_series", "instant": true, "intervalFactor": 1, "refId": "A" } ], "thresholds": "0.7,0.85", "title": "Disk Usage", "type": "singlestat", "valueFontSize": "80%", "valueMaps": [ { "op": "=", "text": "N/A", "value": "null" } ], "valueName": "current" }, { "collapsed": false, "gridPos": { "h": 1, "w": 24, "x": 0, "y": 9 }, "id": 61, "panels": [], "title": "OSM", "type": "row" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 0, "y": 10 }, "id": 71, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_statefulset_status_replicas_ready{namespace=\"osm\", statefulset=\"prometheus\"}", "format": "time_series", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "Prometheus", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "decimals": null, "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 4, "y": 10 }, "id": 74, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_statefulset_status_replicas_ready{namespace=\"osm\", statefulset=\"mongodb-k8s\"}", "format": "time_series", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "mongo", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 8, "y": 10 }, "id": 72, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_statefulset_status_replicas_ready{namespace=\"osm\", statefulset=\"mysql\"}", "format": "time_series", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "mysql ", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 12, "y": 10 }, "id": 77, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "Value", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"ro\"}", "format": "time_series", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "ro", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "decimals": null, "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 16, "y": 10 }, "id": 73, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_statefulset_status_replicas_ready{namespace=\"osm\", statefulset=\"zookeeper\"}", "format": "time_series", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "zookeeper", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "decimals": null, "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 20, "y": 10 }, "id": 78, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_statefulset_status_replicas_ready{namespace=\"osm\", statefulset=\"kafka\"}", "format": "time_series", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "kafka", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 0, "y": 14 }, "id": 76, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "Value", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"lcm\"}", "format": "time_series", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "lcm", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "description": "", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 8, "y": 14 }, "id": 75, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "Value", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"nbi\"}", "format": "time_series", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "nbi", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 12, "y": 14 }, "id": 67, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "Value", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"pol\"}", "format": "time_series", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "pol", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 16, "y": 14 }, "id": 69, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"mon\"}", "instant": true, "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "mon", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "avg" }, { "cacheTimeout": null, "colorBackground": false, "colorValue": false, "colors": [ "#d44a3a", "rgba(237, 129, 40, 0.89)", "#299c46" ], "datasource": "Prometheus", "format": "none", "gauge": { "maxValue": 1, "minValue": 0, "show": true, "thresholdLabels": false, "thresholdMarkers": false }, "gridPos": { "h": 4, "w": 3, "x": 20, "y": 14 }, "id": 81, "interval": null, "links": [], "mappingType": 1, "mappingTypes": [ { "name": "value to text", "value": 1 }, { "name": "range to text", "value": 2 } ], "maxDataPoints": 100, "nullPointMode": "connected", "nullText": null, "options": {}, "pluginVersion": "6.3.5", "postfix": "", "postfixFontSize": "50%", "prefix": "", "prefixFontSize": "50%", "rangeMaps": [ { "from": "null", "text": "N/A", "to": "null" } ], "sparkline": { "fillColor": "rgba(31, 118, 189, 0.18)", "full": false, "lineColor": "rgb(31, 120, 193)", "show": false, "ymax": null, "ymin": null }, "tableColumn": "Value", "targets": [ { "expr": "kube_deployment_status_replicas_available{deployment=\"keystone\"}", "format": "time_series", "instant": true, "legendFormat": "", "refId": "A" } ], "thresholds": "0,1", "timeFrom": null, "timeShift": null, "title": "keystone", "type": "singlestat", "valueFontSize": "100%", "valueMaps": [ { "op": "=", "text": "0", "value": "null" } ], "valueName": "current" }, { "datasource": "Prometheus", "aliasColors": {}, "bars": false, "dashLength": 10, "dashes": false, "fill": 6, "fillGradient": 0, "gridPos": { "h": 9, "w": 23, "x": 0, "y": 18 }, "id": 84, "legend": { "avg": false, "current": false, "max": false, "min": false, "show": true, "total": false, "values": false }, "lines": true, "linewidth": 1, "nullPointMode": "null", "options": { "dataLinks": [] }, "percentage": false, "pointradius": 2, "points": false, "renderer": "flot", "seriesOverrides": [], "spaceLength": 10, "stack": true, "steppedLine": false, "targets": [ { "expr": "sum(namespace_pod_container:container_cpu_usage_seconds_total:sum_rate{namespace=\"osm\"}) by (pod)", "instant": false, "intervalFactor": 4, "legendFormat": "{{pod}}", "refId": "A" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Pod CPU Usage", "tooltip": { "shared": true, "sort": 0, "value_type": "individual" }, "type": "graph", "xaxis": { "buckets": null, "mode": "time", "name": null, "show": true, "values": [] }, "yaxes": [ { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true }, { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true } ], "yaxis": { "align": false, "alignLevel": null } }, { "datasource": "Prometheus", "aliasColors": {}, "bars": false, "dashLength": 10, "dashes": false, "fill": 6, "fillGradient": 0, "gridPos": { "h": 9, "w": 23, "x": 0, "y": 27 }, "id": 85, "legend": { "avg": false, "current": false, "max": false, "min": false, "show": true, "total": false, "values": false }, "lines": true, "linewidth": 1, "nullPointMode": "null", "options": { "dataLinks": [] }, "percentage": false, "pointradius": 2, "points": false, "renderer": "flot", "seriesOverrides": [], "spaceLength": 10, "stack": true, "steppedLine": false, "targets": [ { "expr": "sum(container_memory_working_set_bytes{namespace=\"osm\", container!=\"\"}) by (pod)", "intervalFactor": 4, "legendFormat": "{{pod}}", "refId": "A" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Pod Memory Usage", "tooltip": { "shared": true, "sort": 0, "value_type": "individual" }, "type": "graph", "xaxis": { "buckets": null, "mode": "time", "name": null, "show": true, "values": [] }, "yaxes": [ { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true }, { "format": "short", "label": null, "logBase": 1, "max": null, "min": null, "show": true } ], "yaxis": { "align": false, "alignLevel": null } }, { "cacheTimeout": null, "content": "\n\n\n", "gridPos": { "h": 4, "w": 3, "x": 21, "y": 36 }, "id": 82, "links": [], "mode": "markdown", "options": {}, "pluginVersion": "6.3.5", "targets": [ { "expr": "", "instant": true, "refId": "A" } ], "timeFrom": null, "timeShift": null, "title": "", "transparent": true, "type": "text" }, { "cacheTimeout": null, "content": "<h2 style=\"text-align: center;\"></p>\n\n\n", "gridPos": { "h": 4, "w": 3, "x": 19, "y": 40 }, "id": 80, "links": [], "mode": "html", "options": {}, "pluginVersion": "6.3.5", "targets": [ { "expr": "", "instant": true, "refId": "A" } ], "timeFrom": null, "timeShift": null, "title": "", "transparent": true, "type": "text" } ], "refresh": "30s", "schemaVersion": 19, "style": "dark", "tags": [], "templating": { "list": [ { "current": { "text": "No data sources found", "value": "" }, "hide": 2, "includeAll": false, "label": "", "multi": false, "name": "datasource", "options": [], "query": "prometheus", "refresh": 1, "regex": "/$ds/", "skipUrlSync": false, "type": "datasource" } ] }, "time": { "from": "now-15m", "to": "now" }, "timepicker": { "refresh_intervals": [ "5s", "10s", "30s", "1m", "5m", "15m", "30m", "1h", "2h", "1d" ], "time_options": [ "5m", "15m", "1h", "6h", "12h", "24h", "2d", "7d", "30d" ] }, "timezone": "browser", "title": "OSM Status Summary", "uid": "4XuPd2Ii1", "version": 2 }
26.061554
129
0.339954
f7290c17587cb442aa5c24bcaec98801cd15d933
212
yaml
YAML
rook/pvc/sonarr-config.yaml
Exikle/Artemis-Cluster
6095e2539d81cc5b98ba39028c6918a36ca88923
[ "MIT" ]
null
null
null
rook/pvc/sonarr-config.yaml
Exikle/Artemis-Cluster
6095e2539d81cc5b98ba39028c6918a36ca88923
[ "MIT" ]
null
null
null
rook/pvc/sonarr-config.yaml
Exikle/Artemis-Cluster
6095e2539d81cc5b98ba39028c6918a36ca88923
[ "MIT" ]
null
null
null
kind: PersistentVolumeClaim apiVersion: v1 metadata: name: sonarr-config namespace: default spec: storageClassName: ssd-sc accessModes: - ReadWriteOnce resources: requests: storage: 10Gi
16.307692
27
0.726415
f729670069190d4aeec6defd51ca5127ca8ff2ff
191
yaml
YAML
cluster/apps/media/tautulli/config-pvc.yaml
negative7/home-cluster
425b112f740686d5b9a9ee36b959d21b204a528e
[ "MIT" ]
null
null
null
cluster/apps/media/tautulli/config-pvc.yaml
negative7/home-cluster
425b112f740686d5b9a9ee36b959d21b204a528e
[ "MIT" ]
356
2021-05-05T22:43:19.000Z
2022-03-31T10:09:54.000Z
cluster/apps/media/tautulli/config-pvc.yaml
negative7/home-cluster
425b112f740686d5b9a9ee36b959d21b204a528e
[ "MIT" ]
null
null
null
--- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: tautulli-config-v1 namespace: media spec: accessModes: - ReadWriteOnce resources: requests: storage: 10Gi
14.692308
27
0.706806
f729d69cb19b9059af6f42bf1fbb13eea7f69c8c
518
yaml
YAML
staging/src/k8s.io/pod-security-admission/test/testdata/restricted/v1.23/fail/hostnamespaces0.yaml
767829413/kubernetes
e3982ce472af31efe0cfb5165271c84f1ace0b0f
[ "Apache-2.0" ]
84,910
2015-08-12T17:45:55.000Z
2022-03-31T23:39:40.000Z
staging/src/k8s.io/pod-security-admission/test/testdata/restricted/v1.23/fail/hostnamespaces0.yaml
767829413/kubernetes
e3982ce472af31efe0cfb5165271c84f1ace0b0f
[ "Apache-2.0" ]
98,305
2015-08-12T17:35:13.000Z
2022-03-31T23:46:47.000Z
staging/src/k8s.io/pod-security-admission/test/testdata/restricted/v1.23/fail/hostnamespaces0.yaml
767829413/kubernetes
e3982ce472af31efe0cfb5165271c84f1ace0b0f
[ "Apache-2.0" ]
36,592
2015-08-12T18:36:13.000Z
2022-03-31T16:22:17.000Z
apiVersion: v1 kind: Pod metadata: name: hostnamespaces0 spec: containers: - image: k8s.gcr.io/pause name: container1 securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL hostIPC: true initContainers: - image: k8s.gcr.io/pause name: initcontainer1 securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL securityContext: runAsNonRoot: true seccompProfile: type: RuntimeDefault
19.185185
37
0.660232
f72a961e40b28c9fa68b14a825df90bc78ef29b7
141
yaml
YAML
manifests/valence/grafana/service.yaml
moule3053/valence-manifests
77ecedc7ee0d7d57986c68157759d7b4fd5ebae9
[ "BSD-3-Clause" ]
63
2019-03-06T18:44:48.000Z
2021-08-06T11:59:51.000Z
manifests/valence/grafana/service.yaml
moule3053/valence-manifests
77ecedc7ee0d7d57986c68157759d7b4fd5ebae9
[ "BSD-3-Clause" ]
1
2019-08-22T18:24:42.000Z
2020-05-25T19:04:37.000Z
manifests/valence/grafana/service.yaml
moule3053/valence-manifests
77ecedc7ee0d7d57986c68157759d7b4fd5ebae9
[ "BSD-3-Clause" ]
6
2019-04-29T07:42:08.000Z
2021-05-30T08:02:59.000Z
apiVersion: v1 kind: Service metadata: name: grafana spec: ports: - port: 3000 protocol: TCP targetPort: 3000 type: NodePort
12.818182
20
0.680851
f72aa30fad98d0f49b98bbf2d4b74a563f3e807a
450
yaml
YAML
kubernetes/service.yaml
hazim1093/hello-kubernetes
dfc7f07af5cfbc23b9ad25360e1081b5841adf92
[ "MIT" ]
null
null
null
kubernetes/service.yaml
hazim1093/hello-kubernetes
dfc7f07af5cfbc23b9ad25360e1081b5841adf92
[ "MIT" ]
5
2020-04-22T18:58:14.000Z
2021-03-30T10:48:05.000Z
kubernetes/service.yaml
hazim1093/hello-kubernetes
dfc7f07af5cfbc23b9ad25360e1081b5841adf92
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Service metadata: annotations: xposer.stakater.com/annotations: |- kubernetes.io/ingress.class: external-ingress ingress.kubernetes.io/force-ssl-redirect: true exposeIngressUrl: globally labels: app: hello-kubernetes expose: "true" name: hello-kubernetes spec: ports: - name: http port: 80 protocol: TCP targetPort: 8080 selector: app: hello-kubernetes type: ClusterIP
20.454545
52
0.693333
f72ac0e0f18eadce62a365fcfc4e803eb842083a
177
yaml
YAML
redis/k8s/base/service.yaml
rsascha/k8s-web-socket-test
179132c7429d734a28f513eb90da75825302bc95
[ "MIT" ]
null
null
null
redis/k8s/base/service.yaml
rsascha/k8s-web-socket-test
179132c7429d734a28f513eb90da75825302bc95
[ "MIT" ]
null
null
null
redis/k8s/base/service.yaml
rsascha/k8s-web-socket-test
179132c7429d734a28f513eb90da75825302bc95
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Service metadata: name: redis spec: selector: app: redis ports: - protocol: TCP port: 6379 targetPort: 6379
14.75
26
0.553672
f72ad8d2617a5e76c591cb5f36365b1ba60d05f2
161
yaml
YAML
kustomize/service.yaml
turibbio/azconf2021
04ee366b2cb6e506864f2d092af8e9a637290e1b
[ "MIT" ]
null
null
null
kustomize/service.yaml
turibbio/azconf2021
04ee366b2cb6e506864f2d092af8e9a637290e1b
[ "MIT" ]
null
null
null
kustomize/service.yaml
turibbio/azconf2021
04ee366b2cb6e506864f2d092af8e9a637290e1b
[ "MIT" ]
null
null
null
apiVersion: v1 kind: Service metadata: name: azconf-app namespace: azconf spec: type: LoadBalancer selector: app: azconf-app ports: - port: 8080
13.416667
20
0.695652
f72b47a92bea4e0187bafc58f6b1a153361dd189
226
yaml
YAML
planespotter/ps-sql-volume.yaml
apnex/hacking-k8s
a5a465715f32b1b0817103ae84338872c47bd8f7
[ "MIT" ]
null
null
null
planespotter/ps-sql-volume.yaml
apnex/hacking-k8s
a5a465715f32b1b0817103ae84338872c47bd8f7
[ "MIT" ]
null
null
null
planespotter/ps-sql-volume.yaml
apnex/hacking-k8s
a5a465715f32b1b0817103ae84338872c47bd8f7
[ "MIT" ]
null
null
null
kind: PersistentVolume apiVersion: v1 metadata: name: mysql-volume labels: type: local spec: storageClassName: manual capacity: storage: 2Gi accessModes: - ReadWriteOnce hostPath: path: "/mnt/data"
15.066667
26
0.69469
f72c08666288704303d8ead5cd1eb5c41ccb5ae6
2,610
yaml
YAML
apps/usenet/sabnzbd/deployment.yaml
rxbn/k8s-gitops
4e0fb19cb5ce1a5354b479d6018746c049a16948
[ "Apache-2.0" ]
6
2021-08-01T09:14:39.000Z
2022-01-20T14:27:15.000Z
apps/usenet/sabnzbd/deployment.yaml
rxbn/k8s-gitops
4e0fb19cb5ce1a5354b479d6018746c049a16948
[ "Apache-2.0" ]
270
2021-08-01T08:51:22.000Z
2022-03-31T08:49:07.000Z
apps/usenet/sabnzbd/deployment.yaml
rxbn/k8s-gitops
4e0fb19cb5ce1a5354b479d6018746c049a16948
[ "Apache-2.0" ]
1
2021-11-16T19:39:30.000Z
2021-11-16T19:39:30.000Z
--- apiVersion: apps/v1 kind: Deployment metadata: name: sabnzbd namespace: usenet annotations: reloader.stakater.com/auto: "true" spec: replicas: 1 selector: matchLabels: app: sabnzbd strategy: type: Recreate template: metadata: labels: app: sabnzbd spec: containers: - name: sabnzbd image: lscr.io/linuxserver/sabnzbd:3.4.2-ls51 env: - name: PGID value: "2000" - name: PUID value: "2000" - name: TZ value: Europe/Zurich - name: DOCKER_MODS value: containeroo/docker-mods:sabnzbd-mkvtoolnix|containeroo/docker-mods:sabnzbd-nzbnotify ports: - containerPort: 8080 volumeMounts: - mountPath: /config name: data - mountPath: /incomplete-downloads name: incomplete-downloads - mountPath: /downloads name: downloads - mountPath: /app/sabnzbd/scripts/merge_subtitles.sh name: merge-subtitles subPath: merge_subtitles.sh - mountPath: /tmp/startup_probe.sh name: sabnzbd-startup subPath: startup_probe.sh startupProbe: exec: command: - bash - -c - /tmp/startup_probe.sh initialDelaySeconds: 30 failureThreshold: 30 timeoutSeconds: 10 periodSeconds: 5 livenessProbe: tcpSocket: port: 8080 failureThreshold: 2 timeoutSeconds: 5 periodSeconds: 30 resources: {} restartPolicy: Always automountServiceAccountToken: false volumes: - name: data persistentVolumeClaim: claimName: sabnzbd-data - name: merge-subtitles configMap: name: merge-subtitles items: - key: merge_subtitles.sh path: merge_subtitles.sh defaultMode: 0777 - name: sabnzbd-startup configMap: name: sabnzbd-startup items: - key: startup_probe.sh path: startup_probe.sh defaultMode: 0777 - name: incomplete-downloads hostPath: path: /mnt/disk06/downloads/incomplete type: Directory - name: downloads hostPath: path: /mnt/disk06/downloads/complete type: Directory
28.064516
105
0.521073
f72c77aa229e29d184b7a49fd75f860cbe0f89d3
1,347
yaml
YAML
xos/synchronizer/model_policies/nextepc-mme.yaml
cewuandy/nextepc-mme
fed58871693b5716ad32ed3e2f4aedca7eeb711a
[ "Apache-2.0" ]
null
null
null
xos/synchronizer/model_policies/nextepc-mme.yaml
cewuandy/nextepc-mme
fed58871693b5716ad32ed3e2f4aedca7eeb711a
[ "Apache-2.0" ]
null
null
null
xos/synchronizer/model_policies/nextepc-mme.yaml
cewuandy/nextepc-mme
fed58871693b5716ad32ed3e2f4aedca7eeb711a
[ "Apache-2.0" ]
null
null
null
apiVersion: apps/v1 kind: Deployment metadata: name: nextepc-mme-deployment spec: selector: matchLabels: app: nextepc-mme replicas: 1 template: metadata: labels: app: nextepc-mme spec: containers: - name: myapp-container image: cewuandy/nextepc-base imagePullPolicy: Always command: ["/bin/sh"] args: ["-c", "/root/nextepc/nextepc-mmed"] volumeMounts: - name: nextepc-conf mountPath: /root/nextepc/install/etc/nextepc/ initContainers: - name: init-network-client image: sdnvortex/network-controller:v0.4.9 command: ["/go/bin/client"] args: ["-s=unix:///tmp/vortex.sock", "-b=br0", "-n=eth1", "-i=192.188.2.2/24"] env: - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: POD_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: POD_UUID valueFrom: fieldRef: fieldPath: metadata.uid volumeMounts: - mountPath: /tmp/ name: grpc-sock volumes: - name: grpc-sock hostPath: path: /tmp/vortex/ - name: nextepc-conf configMap: name: nextepc-config
25.903846
86
0.542687
f72cd83caabdfa85d7daa7e6158795e71ab0fd72
367
yaml
YAML
manifests/splunk-kubernetes-metrics/clusterRoleBinding.yaml
nhalstead/splunk-connect-for-kubernetes
6bcc4e41b55bb856f8eeeed10c41fd1f974c018f
[ "Apache-2.0" ]
1
2022-01-10T08:31:33.000Z
2022-01-10T08:31:33.000Z
manifests/splunk-kubernetes-metrics/clusterRoleBinding.yaml
nhalstead/splunk-connect-for-kubernetes
6bcc4e41b55bb856f8eeeed10c41fd1f974c018f
[ "Apache-2.0" ]
null
null
null
manifests/splunk-kubernetes-metrics/clusterRoleBinding.yaml
nhalstead/splunk-connect-for-kubernetes
6bcc4e41b55bb856f8eeeed10c41fd1f974c018f
[ "Apache-2.0" ]
null
null
null
--- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: splunk-kubernetes-metrics labels: app: splunk-kubernetes-metrics version: 1.4.11 roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: kubelet-summary-api-read subjects: - kind: ServiceAccount name: splunk-kubernetes-metrics namespace: default
21.588235
40
0.762943
f72d18d94a6fd4162acea88b09527670aac02e75
127
yaml
YAML
test/functional/resources/cr/namespace-cluster-hive.yaml
hanqiuzh/clusterlifecycle-state-metrics
264fe65c2e975da95d095ba84006b7702f251a39
[ "Apache-2.0" ]
null
null
null
test/functional/resources/cr/namespace-cluster-hive.yaml
hanqiuzh/clusterlifecycle-state-metrics
264fe65c2e975da95d095ba84006b7702f251a39
[ "Apache-2.0" ]
57
2020-12-02T20:36:09.000Z
2021-12-20T07:11:23.000Z
test/functional/resources/cr/namespace-cluster-hive.yaml
hanqiuzh/clusterlifecycle-state-metrics
264fe65c2e975da95d095ba84006b7702f251a39
[ "Apache-2.0" ]
7
2021-03-11T12:47:55.000Z
2021-07-22T07:58:43.000Z
# Copyright Contributors to the Open Cluster Management project apiVersion: v1 kind: Namespace metadata: name: cluster-hive
18.142857
63
0.80315
f72d2fc1210fdf73583230fad0a3acea6cc1e0de
193
yml
YAML
deploy/openshift/redis-pvc.yml
Danver97/Metricio-2.0
b90216925de46f6376f4b5ce84cfb3fc71b3de1c
[ "MIT" ]
null
null
null
deploy/openshift/redis-pvc.yml
Danver97/Metricio-2.0
b90216925de46f6376f4b5ce84cfb3fc71b3de1c
[ "MIT" ]
null
null
null
deploy/openshift/redis-pvc.yml
Danver97/Metricio-2.0
b90216925de46f6376f4b5ce84cfb3fc71b3de1c
[ "MIT" ]
null
null
null
apiVersion: "v1" kind: "PersistentVolumeClaim" metadata: name: "redisclaim" spec: accessModes: - "ReadWriteOnce" resources: requests: storage: "5Gi" volumeName: "redisvol"
17.545455
29
0.683938