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 dotnet template #60

Merged
merged 8 commits into from
Mar 8, 2017
Merged

Conversation

tmds
Copy link
Member

@tmds tmds commented Feb 24, 2017

The dotnet 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.

The dotnet 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.
@tmds
Copy link
Member Author

tmds commented Feb 24, 2017

This is implementing #56

"kind": "Template",
"apiVersion": "v1",
"metadata": {
"name": "dotnet",
Copy link
Member Author

Choose a reason for hiding this comment

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

rename to "dotnet-example"

"name": "dotnet",
"annotations": {
"openshift.io/display-name": ".NET Core",
"description": "Template for creating .NET Core service",
Copy link
Member Author

Choose a reason for hiding this comment

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

update to: "An example .NET Core application"

"description": "The name assigned to all of the frontend objects defined in this template.",
"required": true,
"value": "dotnet-service"
},
Copy link
Member Author

Choose a reason for hiding this comment

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

value: dotnet-example

README.md Outdated
oc create -f <template.json>
```

**dotnet**
Copy link
Member Author

Choose a reason for hiding this comment

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

"dotnet-example", & update json filename

README.md Outdated

**dotnet**

The dotnet template can be used to create a new .NET Core service in OpenShift. It provides parameters for all the environment
Copy link
Member Author

Choose a reason for hiding this comment

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

The dotnet example ...

{
"name": "CONTEXT_DIR",
"displayName": "Context Directory",
"description": "Set this to the relative path to your project if it is not in the root of your repository."
Copy link
Member Author

Choose a reason for hiding this comment

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

"Set this to use a subdirectory of the source code repository"

Copy link
Contributor

Choose a reason for hiding this comment

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

We should set this to "app" since that would allow one to instantiate the template with all the defaults, and it would build and run. s2i-dotnetcore-ex app sources are in "app"

Copy link
Member Author

Choose a reason for hiding this comment

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

I have a preference for setting DOTNET_STARTUP_PROJECT to demonstrate that parameter. I'd do the same for the dotnet+postgre template, if it wasn't for the big restore time of one of the projects we are not using. The postgre template can be update when we support msbuild.

Copy link
Contributor

Choose a reason for hiding this comment

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

OK, makes sense. I missed that.

{
"name": "SOURCE_REPOSITORY_REF",
"displayName": "Git Reference",
"description": "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
Copy link
Contributor

Choose a reason for hiding this comment

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

This should perhaps default to "dotnetcore-1.0". That would match "dotnet:1.0" as the default builder image.

@tmds tmds force-pushed the feature/dotnet-template branch from b9e7046 to 780b1f2 Compare February 27, 2017 12:15
{
"name": "APPLICATION_DOMAIN",
"displayName": "Application Hostname",
"description": "The exposed hostname that will route to the Node.js service, if left blank a value will be defaulted.",
Copy link
Contributor

Choose a reason for hiding this comment

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

I believe you don't want to reference Node.js do you?

Copy link
Member Author

Choose a reason for hiding this comment

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

Definitely not!

},
{
"name": "DOTNET_PUBLISH",
"value": "Y"
Copy link
Member Author

Choose a reason for hiding this comment

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

change to "true"

@tmds tmds merged commit f23e012 into redhat-developer:master Mar 8, 2017
@tmds tmds deleted the feature/dotnet-template branch March 8, 2017 15:44
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.

2 participants