Skip to content
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

Merged
merged 1 commit into from
Mar 26, 2025
Merged

Add krakend official image #2082

merged 1 commit into from
Mar 26, 2025

Conversation

alombarte
Copy link
Contributor

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!

@tianon
Copy link
Member

tianon commented Nov 17, 2021

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" ? 😬

@alombarte
Copy link
Contributor Author

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.

@alombarte
Copy link
Contributor Author

Hi @tianon ,

Is there anything else I can help you with? Do not hesitate to ask.
Thanks for your review!

@ksylvan
Copy link

ksylvan commented Mar 10, 2023

What is happening with this? It's been a while.

@yosifkit
Copy link
Member

close/reopen to trigger GitHub actions once again

@yosifkit yosifkit closed this Mar 11, 2025
@yosifkit yosifkit reopened this Mar 11, 2025
@yosifkit yosifkit requested a review from tianon March 11, 2025 21:57
Copy link
Member

@tianon tianon left a 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. 👍

Comment on lines 40 to 42
```console
docker run -p 8080:8080 -v "${PWD}:/etc/krakend/" %%IMAGE%% run -d -c /etc/krakend/krakend.json
```
Copy link
Member

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:

Suggested change
```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:

Suggested change
```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
```

See the [check command](https://www.krakend.io/docs/commands/check/)

```console
docker run -it -v $PWD:/etc/krakend/ %%IMAGE%% check --config krakend.json
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above.


#### Show the help:

docker run -it %%IMAGE%% help
Copy link
Member

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).

Comment on lines 66 to 69
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 link
Member

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:

Suggested change
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)


### 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.
Copy link
Member

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:

Suggested change
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.

Comment on lines 149 to 150
docker run -it %%IMAGE%% help
docker run -it %%IMAGE%% krakend help
Copy link
Member

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.

@tianon
Copy link
Member

tianon commented Mar 12, 2025

(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]>
@tianon
Copy link
Member

tianon commented Mar 26, 2025

(force pushed a rebase+squash and the newline-at-EOL markdownfmt fix)

@tianon tianon merged commit c7a604f into docker-library:master Mar 26, 2025
6 checks passed
@alombarte
Copy link
Contributor Author

Thank you @tianon!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants