* Added reference to RFC2818 along with guidance to add subjectAltNames ext when generating certs
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Cleaned up wording in cert generation section
Wording before was redundant and there was a fragment sentence left in. I cleaned that up to make it readable.
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Spot fixes of terms, added SAN guidance and references and cleaned up sample script
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Updated sample script to clean up the extension files too
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Cleaned up formatting, removed SAN reference in admin cert steps
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Removed extra word from node cert steps
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Removed reference to admin.ext from sample script since it doesn't exist anymore
Signed-off-by: jeffhuss <jeffhuss@amazon.com>
* Add back Data Prepper 1.4 docs (#698)
* Add back Data Prepper 1.4 docs
Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
* Fix Data Prepper Docker image
Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
* Update GitHub links to `main` branches rather than `master` where it has been changed
Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
Co-authored-by: Aaron Carson <aaron@aaroncarson.co.uk>
The line to create the new image by deactivating the security plugin uses "security-dashboards" and this returns the following error:
docker build --tag=opensearch-dashboards-no-security .
Sending build context to Docker daemon 5.12kB
Step 1/3 : FROM opensearchproject/opensearch-dashboards:1.0.0
---> 6a109c3fbebf
Step 2/3 : RUN /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove security-dashboard
---> Running in 965b66ef7abd
Unable to remove plugin because of error: "Plugin [security-dashboard] is not installed"
The command '/bin/sh -c /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove security-dashboard' returned a non-zero code: 74
Instead using the correct plugin name "securityDashboards" the image compiles correctly:
docker build --tag=opensearch-dashboards-no-security .
Sending build context to Docker daemon 6.144kB
Step 1/3 : FROM opensearchproject/opensearch-dashboards:1.0.0
---> 6a109c3fbebf
Step 2/3 : RUN /usr/share/opensearch-dashboards/bin/opensearch-dashboards-plugin remove securityDashboards
---> Using cache
---> bb9a535b8e42
Step 3/3 : COPY --chown=opensearch-dashboards:opensearch-dashboards opensearch_dashboards.yml /usr/share/opensearch-dashboards/config/
---> e6e76bba8a4f
Successfully built e6e76bba8a4f
Successfully tagged opensearch-dashboards-no-security:latest
Ref:
- https://opensearch.org/docs/dashboards/install/plugins/#list-installed-plugins
- https://github.com/opensearch-project/documentation-website/blob/main/_dashboards/install/plugins.md