-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Add krakend official image #2082
Conversation
I'm frankly very confused here by several things 🙈 😇 "We are currently whitelisted as open-source contributors" isn't a familiar phrase for me, so I'd love to hear more details on what exactly that means to you and/or the krakend project? luraproject/lura#488 (merged by a familiar face 👀) makes me wonder if it really makes sense to make a "krakend" image if it's going to be (has been for months??) renamed to "lura" ? What's the deal with https://www.krakend.io/ (no mention of Lura there I can find) ? What's the relationship between @devopsfaith and the krakend / lura project/community? What is "krakend-ce" ? 😬 |
Hi @tianon , Thanks for your quick response. I understand why you are confused, 😂 I will explain, no worries. The easy part: By whitelisted, I mean that we are already in the Open Source Program (and we are whitelisted for the data pull rate restrictions). All these different names you are mentioning are things we drag from our history. @devopsfaith started as a group where some friends were creating projects for fun, and took a random name. KrakenD was hosted there in 2016 as one of the projects (there were also things like api2html). The @devopsfaith it will eventually disappear, and all repos transferred to the new @krakendio to precisely avoid this confusion. Lura is to KrakenD similarly what Moby is to Docker. There is no Lura ready-to-use image, as it is an API gateway toolkit/libraries to build your own gateway. Lura was originally the "KrakenD framework" (KrakenD's engine) and donated recently to the Linux Foundation (press note). You can still see 302 the redirection to Lura here. KrakenD CE was a distinction between the framework and the Community Edition (CE-). But today, when we talk about KrakenD, we are referring to the repo krakend-ce. You probably have more questions, and I will be happy to answer, but let me do one to me. Why our Business Director @obokaman-com looks familiar to you? I am curious about it. |
Hi @tianon , Is there anything else I can help you with? Do not hesitate to ask. |
What is happening with this? It's been a while. |
close/reopen to trigger GitHub actions once again |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of these things build on what I've just written in docker-library/official-images#13592 (comment), so I recommend starting there. This is all really minor stuff, though. 👍
krakend/content.md
Outdated
```console | ||
docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should not be indented and code-fenced, and if you want to use console
as the highlight, you'll want to add the "prompt" sigil ($
); alternatively, you could switch to bash
:
```console | |
docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json | |
``` | |
```console | |
$ docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json | |
``` |
or:
```console | |
docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json | |
``` | |
```bash | |
docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json | |
``` |
krakend/content.md
Outdated
See the [check command](https://www.krakend.io/docs/commands/check/) | ||
|
||
```console | ||
docker run -it -v $PWD:/etc/krakend/ %%IMAGE%% check --config krakend.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See above.
krakend/content.md
Outdated
|
||
#### Show the help: | ||
|
||
docker run -it %%IMAGE%% help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be consistent too (and this one in particular probably ought to include --rm
).
krakend/content.md
Outdated
COPY krakend.json /etc/krakend/krakend.json | ||
|
||
# Check and test that the file is valid | ||
RUN krakend check -d -t -c /etc/krakend/krakend.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I noted in the review on the Dockerfile
, I think this gets cleaner for users if you lean into the WORKDIR
:
COPY krakend.json /etc/krakend/krakend.json | |
# Check and test that the file is valid | |
RUN krakend check -d -t -c /etc/krakend/krakend.json | |
COPY krakend.json ./ | |
# Check and test that the file is valid | |
RUN krakend check -d -t -c krakend.json |
(although this is one that's up to you)
krakend/content.md
Outdated
|
||
### Container permissions and commands | ||
|
||
All `krakend` commands are executed as `krakend` user (uid=1000) through `su-exec`, and the rest of the commands (e.g., `sh`) are executed as root. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As noted in the other review, I would suggest not marrying yourself explicitly to su-exec
:
All `krakend` commands are executed as `krakend` user (uid=1000) through `su-exec`, and the rest of the commands (e.g., `sh`) are executed as root. | |
All `krakend` commands are executed as `krakend` user (uid=1000), and the rest of the commands (e.g., `sh`) are executed as root. |
krakend/content.md
Outdated
docker run -it %%IMAGE%% help | ||
docker run -it %%IMAGE%% krakend help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, you probably ought to use a fenced code block here with either console
or bash
(and add the prompt or not as appropriate), and with help
as the example, --rm
is appropriate to include.
(It would also be helpful if you squash your commits, particularly the merge commits.) |
Signed-off-by: Albert Lombarte <[email protected]> Signed-off-by: Daniel Ortiz <[email protected]>
(force pushed a rebase+squash and the newline-at-EOL |
Thank you @tianon! |
Hi there,
We are currently whitelisted as open-source contributors, and we would also like to add our KrakenD image to the official list.
Thanks!