Hi All,
I wanna bake LUA custom plugin files into dataplane container image. That means I will will data plane with custom image, built from Kong gateway latest image, refer below Dockerfile.
FROM kong/kong-gateway:latest
# Ensure any patching steps are executed as root user
USER root
# Add custom plugin to the image
COPY ./kong/plugins/my-plugin /usr/local/share/lua/5.1/kong/plugins/my-plugin
# Ensure kong user is selected for image execution
USER kong
# Run kong
ENTRYPOINT ["/entrypoint.sh"]
EXPOSE 8000 8443 8001 8444
STOPSIGNAL SIGQUIT
HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
CMD ["kong", "docker-start"]
My data plane can run and plugin is triggered.
When I got into issue pertaining dataplane, will I still get support from Kong Enterprise if I am have valid Premium Support?