-
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
Changes from 20 commits
25fab88
cc3ebf5
6f64e18
4123a24
7a162ee
beb85c6
0b67f51
10f4cc8
b832baa
a335f75
b090909
14033af
1193f66
771224b
d975498
d309942
a8c7c81
8805f00
9f5acfc
4872273
bc1658d
0f9d807
21bb483
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,13 +49,34 @@ Example: `dotnet/dotnetcore-10-rhel7` | |
OpenShift Templates | ||
------------------- | ||
|
||
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: | ||
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> | ||
``` | ||
|
||
To instantiate a template you can use the `oc new-app` command: | ||
|
||
``` | ||
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 commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if that's correct. Suggested wording: In case you've imported the .NET Core imagestreams into your local project, There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
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 commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure whether "Search and select the desired template by it's name, for example |
||
Next, click **Create** to start a build and deploy the sample application. Once the build has and deployment | ||
have completed, you can browse to the application using the url you find in project overview. | ||
|
||
**dotnet-example** | ||
|
||
The dotnet-example template can be used to create a new .NET Core service in OpenShift. It provides parameters for all the environment | ||
variables of the s2i-dotnetcore builder. It also includes a liveness and a readiness probe. | ||
|
||
**dotnet-pgsql-persistent** | ||
|
||
The dotnet-pgsql-persistent creates a .NET Core service with a PostgreSQL backend. It provides parameters for all the environment | ||
variables of the s2i-dotnetcore builder and variables to setup the database. The database connection information is passed to the | ||
.NET application via the `ConnectionString` environment variable. |
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:
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.