Skip to content

Example application for the OpenShift s2i-dotnetcore builder image

License

Notifications You must be signed in to change notification settings

piomin/s2i-dotnetcore-ex

 
 

Repository files navigation

.NET Core Sample App for OpenShift

This repository contains a simple MVC .NET Core application that can be deployed on OpenShift.

The example is meant to be built and run with the s2i-dotnetcore builder images. The branches of this repository correspond to versions of the s2i-dotnetcore images.

Deploying the application

Deploy using the OpenShift client ('oc')

# Create a new OpenShift project
$ oc new-project mydemo

# Add the .NET Core application
$ oc new-app dotnet:5.0-ubi8~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnet-5.0 --context-dir app

# Make the .NET Core application accessible externally and show the url
$ oc expose service s2i-dotnetcore-ex
$ oc get route s2i-dotnetcore-ex

Deploy using the OpenShift Do ('odo')

# Use git to check out the .NET Core application
$ git clone https://github.com/redhat-developer/s2i-dotnetcore-ex
$ cd s2i-dotnetcore-ex/app
$ git checkout dotnet-5.0

# Create a new OpenShift project
$ odo project create mydemo

# Add a component for the .NET Core application
$ odo create dotnet:5.0-ubi8

# Make the .NET Core application accessible externally
$ odo url create

# Deploy the application
$ odo push

Copyright 2016-2020 by Red Hat, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this package except in compliance with the License (see the LICENSE file included in this distribution). You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Example application for the OpenShift s2i-dotnetcore builder image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 39.5%
  • HTML 39.3%
  • CSS 14.3%
  • Dockerfile 4.5%
  • JavaScript 2.4%