Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
3e61d965
Unverified
Commit
3e61d965
authored
Feb 04, 2018
by
Paulo Pires
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove resources that were moved to kubernetes/examples repo
Signed-off-by:
Paulo Pires
<
pjpires@gmail.com
>
parent
c52192f3
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
0 additions
and
253 deletions
+0
-253
es-rc.yaml
examples/elasticsearch/es-rc.yaml
+0
-51
es-svc.yaml
examples/elasticsearch/es-svc.yaml
+0
-17
README.md
examples/elasticsearch/production_cluster/README.md
+0
-1
es-client-rc.yaml
examples/elasticsearch/production_cluster/es-client-rc.yaml
+0
-51
es-data-rc.yaml
examples/elasticsearch/production_cluster/es-data-rc.yaml
+0
-46
es-discovery-svc.yaml
...es/elasticsearch/production_cluster/es-discovery-svc.yaml
+0
-15
es-master-rc.yaml
examples/elasticsearch/production_cluster/es-master-rc.yaml
+0
-48
es-svc.yaml
examples/elasticsearch/production_cluster/es-svc.yaml
+0
-16
service-account.yaml
...les/elasticsearch/production_cluster/service-account.yaml
+0
-4
service-account.yaml
examples/elasticsearch/service-account.yaml
+0
-4
No files found.
examples/elasticsearch/es-rc.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
ReplicationController
metadata
:
name
:
es
labels
:
component
:
elasticsearch
spec
:
replicas
:
1
template
:
metadata
:
labels
:
component
:
elasticsearch
spec
:
serviceAccount
:
elasticsearch
containers
:
-
name
:
es
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
:
"
DISCOVERY_SERVICE"
value
:
"
elasticsearch"
-
name
:
NODE_MASTER
value
:
"
true"
-
name
:
NODE_DATA
value
:
"
true"
-
name
:
HTTP_ENABLE
value
:
"
true"
ports
:
-
containerPort
:
9200
name
:
http
protocol
:
TCP
-
containerPort
:
9300
name
:
transport
protocol
:
TCP
volumeMounts
:
-
mountPath
:
/data
name
:
storage
volumes
:
-
name
:
storage
emptyDir
:
{}
examples/elasticsearch/es-svc.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
Service
metadata
:
name
:
elasticsearch
labels
:
component
:
elasticsearch
spec
:
type
:
LoadBalancer
selector
:
component
:
elasticsearch
ports
:
-
name
:
http
port
:
9200
protocol
:
TCP
-
name
:
transport
port
:
9300
protocol
:
TCP
examples/elasticsearch/production_cluster/README.md
deleted
100644 → 0
View file @
c52192f3
This file has moved to
[
https://github.com/kubernetes/examples/blob/master/staging/elasticsearch/production_cluster/README.md
](
https://github.com/kubernetes/examples/blob/master/staging/elasticsearch/production_cluster/README.md
)
examples/elasticsearch/production_cluster/es-client-rc.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
ReplicationController
metadata
:
name
:
es-client
labels
:
component
:
elasticsearch
role
:
client
spec
:
replicas
:
1
template
:
metadata
:
labels
:
component
:
elasticsearch
role
:
client
spec
:
serviceAccount
:
elasticsearch
containers
:
-
name
:
es-client
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
:
NODE_DATA
value
:
"
false"
-
name
:
HTTP_ENABLE
value
:
"
true"
ports
:
-
containerPort
:
9200
name
:
http
protocol
:
TCP
-
containerPort
:
9300
name
:
transport
protocol
:
TCP
volumeMounts
:
-
mountPath
:
/data
name
:
storage
volumes
:
-
name
:
storage
emptyDir
:
{}
examples/elasticsearch/production_cluster/es-data-rc.yaml
deleted
100644 → 0
View file @
c52192f3
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
:
{}
examples/elasticsearch/production_cluster/es-discovery-svc.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
Service
metadata
:
name
:
elasticsearch-discovery
labels
:
component
:
elasticsearch
role
:
master
spec
:
selector
:
component
:
elasticsearch
role
:
master
ports
:
-
name
:
transport
port
:
9300
protocol
:
TCP
examples/elasticsearch/production_cluster/es-master-rc.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
ReplicationController
metadata
:
name
:
es-master
labels
:
component
:
elasticsearch
role
:
master
spec
:
replicas
:
1
template
:
metadata
:
labels
:
component
:
elasticsearch
role
:
master
spec
:
serviceAccount
:
elasticsearch
containers
:
-
name
:
es-master
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
:
"
true"
-
name
:
NODE_DATA
value
:
"
false"
-
name
:
HTTP_ENABLE
value
:
"
false"
ports
:
-
containerPort
:
9300
name
:
transport
protocol
:
TCP
volumeMounts
:
-
mountPath
:
/data
name
:
storage
volumes
:
-
name
:
storage
emptyDir
:
{}
examples/elasticsearch/production_cluster/es-svc.yaml
deleted
100644 → 0
View file @
c52192f3
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
examples/elasticsearch/production_cluster/service-account.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
ServiceAccount
metadata
:
name
:
elasticsearch
examples/elasticsearch/service-account.yaml
deleted
100644 → 0
View file @
c52192f3
apiVersion
:
v1
kind
:
ServiceAccount
metadata
:
name
:
elasticsearch
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment