-
Notifications
You must be signed in to change notification settings - Fork 719
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OSS support #1172
Comments
Hi @racevedoo, ECK turns on security on by default for every cluster and requires the free security features from 6.8+ and 7.1+ which is why that error is appearing. We do not have plans to support OSS at this time |
so we are going to secure whole ES via Istio and do not need xpack security. why it is enforced? apiVersion: elasticsearch.k8s.elastic.co/v1alpha1
kind: Elasticsearch
metadata:
name: elastic-tracing
spec:
version: 7.2.0
nodes:
- nodeCount: 2 # at least some safety
config:
node.master: true
node.data: true
node.ingest: true
xpack.security.enabled: false
# xpack.security.authc.token.enabled: false
# xpack.security.http.ssl.enabled: false
# xpack.security.transport.ssl.enabled: false
volumeClaimTemplates:
- metadata:
name: elasticsearch-data # note: elasticsearch-data must be the name of the Elasticsearch volume
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
#storageClassName: standard # can be any available storage class
secureSettings: [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Proposal
Support OSS version. Currently, when I try to use the oss elasticsearch version(image: docker.elastic.co/elasticsearch/elasticsearch-oss:7.2.0), configuring like:
I get the following error:
Is that intended? Are there any plans to support oss?
Thanks!
The text was updated successfully, but these errors were encountered: