-
Notifications
You must be signed in to change notification settings - Fork 192
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 dotnet-pgsql-persistent template #27
Conversation
How would I test this? Could you please provide some documentation as to how this is intended to be used? |
[skipci] |
No idea. Do you know how the other templates are tested?
Templates are supposed to be self-documenting. So give it a try, and you perhaps you find some places where the documentation can improve. |
Please don't assume users will know how to use it. I disagree on the self-documenting note. I'm sure you've run some commands/steps to test this. Documenting them here for others to reproduce would be nice. What other templates are you referring to? We currently only have an imagestream file. |
This is an OpenShift template (https://docs.openshift.org/latest/dev_guide/templates.html). It is similar to other templates OpenShift provides out of the box: cakephp-mysql-persistent, rails-pgsql-persistent, dancer-mgsql-persistent, ... |
General comment: Please consider this from the point of a reviewer. For example, I as a reviewer I first look at the title and read the description next. My experience here was:
At that point I'm already not super eager to look any further. We should aim at making work easier for reviewers, not harder. The suggestions for future PRs is:
|
@jerboaa my bad, I thought the title would be enough for you to figure out what it was about. I tried this with the published dotnet:1.1 and a branch that works around the various issues we have fixed in the meanwhile. |
@jerboaa can you review this? |
@tmds I can review it, but not sure when. If somebody else could have a look meanwhile it would be helpful. |
Both work, but http is more correct
README.md
Outdated
The `templates` folder contains OpenShift templates. Some of these will be shipped with OpenShift. If a template is not on your OpenShift installation, you can import it: | ||
|
||
``` | ||
oc create -f <template.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.
This only describes how to import the template itself. It would be useful to describe how a user would be able to instantiate it. Something like:
oc process dotnet-pgsql-persistent | oc create -f -
Once the above has been performed, what is the user expected to get? Would they be able to access the musicstore app directly? How would they be able to access it. I suppose this should go to https://github.com/redhat-developer/s2i-aspnet-musicstore-ex#openshift-web-console (i.e. into the readme there). If we add it there, we should put some references to the s2i-aspnet-musicstore-ex
repo.
"kind": "Template", | ||
"apiVersion": "v1", | ||
"metadata": { | ||
"name": "dotnet-pgsql-persistent", |
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.
I wonder if we should give this a more descriptive name. How about dotnet-musicstore-pgsql-persistent
? A bit longer, but seems to tell you a bit more what you're going to get. Have you considered adding a *-ephemeral
template. It would be easier to test. Right now I don't have an OpenShift instance with persistent volumes set up. That makes testing harder for me ;-)
"sourceStrategy": { | ||
"from": { | ||
"kind": "ImageStreamTag", | ||
"namespace": "${NAMESPACE}", |
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.
We should remove this namespace since this prevents users from using this template if the dotnet images come from an imagestream in the local (current) namespace and don't have it in openshift
.
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.
Is this different for the rails example? I got this from their template: https://github.com/openshift/rails-ex/blob/master/openshift/templates/rails-postgresql-persistent.json#L102
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.
They assume it's preloaded, I suppose. Which they probably do for all sclorg images. Rails is one of them. We should not (yet) assume that. It should work either way if we omit the namespace.
This environment variable is used by the s2i assemble script.
|
This parameter is mapped to the corresponding s2i-dotnetcore environment variable
Used to specify the namespace of the .NET builder image. The postgresql image is always retrieved from the openshift namespace.
[skipci] |
"limits": { | ||
"memory": "${MEMORY_LIMIT}" | ||
} | ||
} |
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.
Could you please add a readiness/liveness probe like this to the template? This avoids a message in the webconsole showing up that the deployment does not have one.
"livenessProbe": {
"httpGet": {
"path": "/Store",
"port": 8080,
"scheme": "HTTP"
},
"initialDelaySeconds": 40,
"timeoutSeconds": 10,
"periodSeconds": 10,
"successThreshold": 1,
"failureThreshold": 3
},
"readinessProbe": {
"httpGet": {
"path": "/Store",
"port": 8080,
"scheme": "HTTP"
},
"initialDelaySeconds": 10,
"timeoutSeconds": 30,
"periodSeconds": 10,
"successThreshold": 1,
"failureThreshold": 3
},
This looks OK to me, fwiw. @tmds feel free to merge. |
Do you mind adding some sample usage of the template here and reference in README.md (of this repo) like I did with #64: Note there are also references to gpiercey which should be replaced by redhat-developer. Thanks! |
README.md
Outdated
oc new-app --template=<template> | ||
``` | ||
|
||
In case you imported the template in your project, set the `NAMESPACE` parameter to your project name |
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.
Not sure if that's correct. NAMESPACE
needs to be specified when the dotnet imagestreams are not in openshift
, but in a local project.
Suggested wording:
In case you've imported the .NET Core imagestreams into your local project, NAMESPACE
needs to be specified to match it. This can be done by setting the NAMESPACE
parameter via -p NAMESPACE=<project>
.
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.
Right. I will remove the paragraph since the README isn't describing how to import image streams.
README.md
Outdated
by adding the `-p NAMESPACE=<project>` parameter. | ||
|
||
The template can also be instantiated using the OpenShift web console. Login to the console and | ||
navigate to the desired project. Click the **Add to Project** button. Search and select the \<template>. |
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.
I'm not sure whether \<template>
is very clear. How about this instead?
"Search and select the desired template by it's name, for example dotnet-example
."
@jerboaa can you do a test? When the app starts it should say |
@tmds working on it. |
@tmds Works fine for me. Ship it! |
Thanks @jerboaa |
No description provided.