This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata: | |
name: playerdata-cache | |
namespace: srt | |
spec: | |
adminAuth: | |
secretName: playerdata-grid-auth | |
clusterName: gamedata | |
name: playerdata | |
templateName: org.infinispan.REPL_SYNC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema", | |
"$id": "http://example.com/example.json", | |
"type": "object", | |
"title": "The Space Ring Things Player Schema", | |
"description": "The root schema comprises the entire JSON document.", | |
"default": {}, | |
"examples": [ | |
{ | |
"position": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Cluster | |
apiVersion: kind.x-k8s.io/v1alpha4 | |
nodes: | |
- role: control-plane | |
image: kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6 | |
kubeadmConfigPatches: | |
- | | |
kind: ClusterConfiguration | |
kubernetesVersion: v1.21.1 | |
apiServer: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: kafka.strimzi.io/v1beta1 | |
kind: Kafka | |
metadata: | |
name: my-cluster | |
namespace: serverless-demo | |
spec: | |
kafka: | |
config: | |
offsets.topic.replication.factor: 1 | |
transaction.state.log.replication.factor: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: Deployment | |
apiVersion: apps/v1 | |
metadata: | |
annotations: | |
deployment.kubernetes.io/revision: '1' | |
selfLink: /apis/apps/v1/namespaces/stressy/deployments/stress | |
resourceVersion: '31943' | |
name: stress | |
uid: b3161dca-06f4-46b8-9736-03a0c6258653 | |
creationTimestamp: '2020-08-17T14:30:12Z' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: monitoring.coreos.com/v1 | |
kind: PrometheusRule | |
metadata: | |
name: example-alert | |
spec: | |
groups: | |
- name: example | |
rules: | |
- alert: TooManyErrorAlert | |
expr: http_requests_total{code="404"} > 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: LimitRange | |
apiVersion: v1 | |
metadata: | |
name: stressy-core-resource-limits | |
spec: | |
limits: | |
- type: Container | |
max: | |
cpu: '4' | |
memory: 6Gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__ __ | |
/ \ / \ ______ _ _ __ __ __ | |
/ /\ / /\ \ / __ \ | | | | / \ \ \ / / | |
/ / / / \ \ | | | | | | | | / /\ \ \ / | |
\ \ \ \ / / | |__| | | |__| | / ____ \ | | | |
\ \/ \ \/ / \_ ___/ \____/ /_/ \_\ |_| | |
\__/ \__/ \ \__ | |
\___\ by Red Hat | |
Build, Store, and Distribute your Containers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: redhatcop.redhat.io/v1alpha1 | |
kind: QuayEcosystem | |
metadata: | |
selfLink: >- | |
/apis/redhatcop.redhat.io/v1alpha1/namespaces/container-registry/quayecosystems/quayecosystem | |
resourceVersion: '75113' | |
name: quayecosystem | |
uid: 5c22133d-3b3e-47a4-bf9f-6078518e4936 | |
creationTimestamp: '2020-08-11T16:54:30Z' | |
generation: 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: wait for the status of the ArgoCD subscription to not be empty | |
k8s_info: | |
api_version: operators.coreos.com/v1alpha1 | |
kind: Subscription | |
name: argocd-operator | |
namespace: "{{ ocp4_workload_argocd_operator_project }}" | |
register: r_ocp4_workload_argocd_operator_subscription | |
until: | |
- r_ocp4_workload_argocd_operator_subscription is defined | |
- r_ocp4_workload_argocd_operator_subscription.resources is defined |