text stringlengths 0 59.1k |
|---|
"active_primary_shards" : 0, |
"active_shards" : 0, |
"relocating_shards" : 0, |
"initializing_shards" : 0, |
"unassigned_shards" : 0, |
"delayed_unassigned_shards" : 0, |
"number_of_pending_tasks" : 0, |
"number_of_in_flight_fetch" : 0 |
} |
``` |
<|endoftext|> |
# source: k8s_examples/_archived/elasticsearch/production_cluster/es-data-rc.yaml type: yaml |
apiVersion: v1 |
kind: ReplicationController |
metadata: |
name: es-data |
labels: |
component: elasticsearch |
role: data |
spec: |
replicas: 1 |
template: |
metadata: |
labels: |
component: elasticsearch |
role: data |
spec: |
serviceAccount: elasticsearch |
containers: |
- name: es-data |
securityContext: |
capabilities: |
add: |
- IPC_LOCK |
image: quay.io/pires/docker-elasticsearch-kubernetes:1.7.1-4 |
env: |
- name: KUBERNETES_CA_CERTIFICATE_FILE |
value: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt |
- name: NAMESPACE |
valueFrom: |
fieldRef: |
fieldPath: metadata.namespace |
- name: "CLUSTER_NAME" |
value: "myesdb" |
- name: NODE_MASTER |
value: "false" |
- name: HTTP_ENABLE |
value: "false" |
ports: |
- containerPort: 9300 |
name: transport |
protocol: TCP |
volumeMounts: |
- mountPath: /data |
name: storage |
volumes: |
- name: storage |
emptyDir: {} |
<|endoftext|> |
# source: k8s_examples/_archived/elasticsearch/production_cluster/es-svc.yaml type: yaml |
apiVersion: v1 |
kind: Service |
metadata: |
name: elasticsearch |
labels: |
component: elasticsearch |
role: client |
spec: |
type: LoadBalancer |
selector: |
component: elasticsearch |
role: client |
ports: |
- name: http |
port: 9200 |
protocol: TCP |
<|endoftext|> |
# source: k8s_examples/_archived/spark/spark-master-controller.yaml type: yaml |
kind: ReplicationController |
apiVersion: v1 |
metadata: |
name: spark-master-controller |
spec: |
replicas: 1 |
selector: |
component: spark-master |
template: |
metadata: |
labels: |
component: spark-master |
spec: |
containers: |
- name: spark-master |
image: registry.k8s.io/spark:1.5.2_v1 |
command: ["/start-master"] |
ports: |
- containerPort: 7077 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.