Skip to content

Commit 3f88c96

Browse files
committed
.NET Core 2.2 updates
1 parent 8f3ce59 commit 3f88c96

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

using_images/s2i_images/dot_net_core.adoc

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,19 @@ and Python from within {product-title}.
3333
[[dot-net-core-supported-versions]]
3434
== Supported Versions
3535

36+
* .NET Core version 2.2
3637
* .NET Core version 2.1
37-
* .NET Core version 2.0
3838
* .NET Core version 1.1
3939
* .NET Core version 1.0
4040
* Supported on Red Hat Enterprise Linux (RHEL) 7
4141
ifdef::openshift-enterprise[]
4242
and {product-title} versions 3.3 and later
4343
endif::openshift-enterprise[]
4444

45+
For release details related to .NET Core version 2.2, see
46+
link:https://access.redhat.com/documentation/en-us/net_core/2.2/html/release_notes_for_containers/[Release
47+
Notes for Containers].
48+
4549
For release details related to .NET Core version 2.1, see
4650
link:https://access.redhat.com/documentation/en-us/net_core/2.1/html/release_notes_for_containers/[Release
4751
Notes for Containers].
@@ -58,8 +62,8 @@ link:https://access.redhat.com/documentation/en/net-core/1.1/paged/release-notes
5862
The RHEL 7 images are available through the Red Hat Registry:
5963

6064
----
65+
$ docker pull registry.redhat.io/dotnet/dotnet-22-rhel7
6166
$ docker pull registry.redhat.io/dotnet/dotnet-21-rhel7
62-
$ docker pull registry.redhat.io/dotnet/dotnet-20-rhel7
6367
$ docker pull registry.redhat.io/dotnet/dotnetcore-11-rhel7
6468
$ docker pull registry.redhat.io/dotnet/dotnetcore-10-rhel7
6569
----
@@ -182,6 +186,11 @@ and all processes that run in the image after the build, including the
182186
application that was built. The items can be absolute paths starting with `/` or
183187
paths in the source repository (for example, certificates).
184188
|
189+
190+
|`DOTNET_RESTORE_DISABLE_PARALLEL`
191+
|When set to `true`, disables restoring multiple projects in parallel. This reduces
192+
restore timeout errors when the build container is running with low CPU limits.
193+
|`false`
185194
|===
186195

187196
[[dot-net-quickly-deploy-applications]]
@@ -201,17 +210,17 @@ sample repository:
201210

202211
ifdef::openshift-online[]
203212
----
213+
$ oc new-app dotnet:2.2~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.2 --context-dir=app
204214
$ oc new-app dotnet:2.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1 --context-dir=app
205-
$ oc new-app dotnet:2.0~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.0 --context-dir=app
206215
$ oc new-app dotnet:1.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.1 --context-dir=app
207216
$ oc new-app dotnet:1.0~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.0 --context-dir=app
208217
----
209218
endif::openshift-online[]
210219

211220
ifndef::openshift-online[]
212221
----
222+
$ oc new-app registry.redhat.io/dotnet/dotnet-22-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.2 --context-dir=app
213223
$ oc new-app registry.redhat.io/dotnet/dotnet-21-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1 --context-dir=app
214-
$ oc new-app registry.redhat.io/dotnet/dotnet-20-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.0 --context-dir=app
215224
$ oc new-app registry.redhat.io/dotnet/dotnetcore-11-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.1 --context-dir=app
216225
$ oc new-app registry.redhat.io/dotnet/dotnetcore-10-rhel7~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-1.0 --context-dir=app
217226
----
@@ -246,10 +255,10 @@ endif::openshift-enterprise[]
246255
deploy a sample application.
247256

248257
The link:https://github.com/redhat-developer/s2i-dotnetcore-ex[.NET Core sample
249-
application] running on `dotnet/dotnet-21-rhel7` can be deployed with:
258+
application] running on `dotnet/dotnet-22-rhel7` can be deployed with:
250259

251260
----
252-
$ oc new-app --template dotnet-example -p DOTNET_IMAGE_STREAM_TAG=dotnet:2.1 -p SOURCE_REPOSITORY_REF=dotnetcore-2.1
261+
$ oc new-app --template dotnet-example -p DOTNET_IMAGE_STREAM_TAG=dotnet:2.2 -p SOURCE_REPOSITORY_REF=dotnetcore-2.2
253262
----
254263

255264
The link:https://github.com/redhat-developer/s2i-dotnetcore-ex[.NET Core sample

0 commit comments

Comments
 (0)