Skip to content

Commit 3346303

Browse files
committed
Bump to 12.9.0
1 parent a249ea2 commit 3346303

File tree

40 files changed

+68
-68
lines changed

40 files changed

+68
-68
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![Documentation](https://img.shields.io/badge/documentation-D9D8D6?style=for-the-badge&labelColor=373A36)](https://help.agi.com/stkdevkit/index.htm)
55
[![Support](https://img.shields.io/badge/email%20support-898A8D?style=for-the-badge&labelColor=373A36)](mailto:support@agi.com)
6-
[![Download](https://img.shields.io/badge/download%2012.8.0-FFB71B?style=for-the-badge&labelColor=373A36)](https://support.agi.com/downloads/7/)
6+
[![Download](https://img.shields.io/badge/download%2012.9.0-FFB71B?style=for-the-badge&labelColor=373A36)](https://support.agi.com/downloads/7/)
77

88
Welcome to the STKCodeExamples repository, where we share code examples from our favorite utilities and demos for Systems Tool Kit (STK), a commercial software application from ANSYS, Inc.
99

StkAutomation/Matlab/Problem_Specific/Create3DCoverageFromAreaTarget.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
GRD = input('Grid Resolution Distance (meters)(integer): ');
2424
Height = input('Height (meters): ');
2525
LevelsTot = input('Number of levels (Altitude Resolution)(integer): ');
26-
stkverstr = input('STK Version (String, "stk.v.12.8.0"): ');
26+
stkverstr = input('STK Version (String, "stk.v.12.9.0"): ');
2727
stkver = convertStringsToChars(stkverstr);
2828
PointFile = input('Name of Point File to be created (String, "Test File"): ');
2929
Path = input('File path where this script resides (String, "C:\\Users\\ajones\\Documents\\MATLAB"): ');

StkEngineContainerization/linux/custom-environment/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG baseImage=ansys/stk/stk-engine-baseline:12.8.0-ubi8
1+
ARG baseImage=ansys/stk/stk-engine-baseline:12.9.0-ubi8
22
FROM ${baseImage}
33

44
USER root

StkEngineContainerization/linux/custom-environment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ If you need to override the default `pip` repository URL to download Python pack
3030

3131
> If you would like to use the base ubi image from IronBank you can change the `baseImage` in step 2 to `registry1.dso.mil/ironbank/redhat/ubi/ubi8:latest`.
3232
33-
1. Run `docker build -t ansys/stk/stk-engine-custom-baseline:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.8.0` This will produce an image on top of the `stk-engine-baseline` image that is needed to build the code samples using
33+
1. Run `docker build -t ansys/stk/stk-engine-custom-baseline:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.9.0` This will produce an image on top of the `stk-engine-baseline` image that is needed to build the code samples using
3434
STK Engine, `yum`, and `pip` in your environment.
3535
2. Run `docker build -t custom/redhat/ubi8:latest --build-arg baseImage=redhat/ubi8:latest .` on the command line in this directory. This will produce an image on top of the `redhat/ubi8:latest` baseline image that is needed to build the code samples using `yum` or `pip` without STK Engine in your environment.
3636

StkEngineContainerization/linux/custom-environment/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: '3.7'
22
services:
33
stk-engine-custom-baseline:
4-
image: ansys/stk/stk-engine-custom-baseline:12.8.0-ubi8
4+
image: ansys/stk/stk-engine-custom-baseline:12.9.0-ubi8
55
build:
66
context: .
77
args:
8-
baseImage: ansys/stk/stk-engine-baseline:12.8.0-ubi8
8+
baseImage: ansys/stk/stk-engine-baseline:12.9.0-ubi8
99
pipIndexUrl: '' # Edit this value to be the index URL of your internal pip repository if you have one.
1010
custom-ubi8:
1111
image: custom/redhat/ubi8:latest

StkEngineContainerization/linux/stk-engine-baseline/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ This Docker image code sample demonstrates how to install STK Engine for Linux i
1717

1818
1. Download version 12.4.0 or later of STK Engine for UNIX and STK Engine Data for UNIX from [https://support.agi.com/downloads](https://support.agi.com/downloads).
1919
2. Unzip these files and copy the `stk_binaries_v${version}.tgz` and `stk_data_v${version}.tgz` into the [`distributions`](./distributions) folder at the same level as this file.
20-
3. Run `docker build -t ansys/stk/stk-engine-baseline:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.8.0`
20+
3. Run `docker build -t ansys/stk/stk-engine-baseline:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.9.0`
2121

2222
### Run the Container
2323

2424
STK Engine requires a host application to run, so this baseline image does not specify an `ENTRYPOINT`. If you were to run a container from this image, it would exit immediately. However, you can verify that STK Engine is working inside the `stk-engine-baseline` container with the following steps:
2525

26-
1. Run the following command from this directory after replacing `{version}` with the version number. i.e `12.8.0`: `docker run -it --env-file ../configuration/licensing.env --name stk-baseline --rm ansys/stk/stk-engine-baseline:{version}-ubi8 connectconsole --interactive --nographics`
26+
1. Run the following command from this directory after replacing `{version}` with the version number. i.e `12.9.0`: `docker run -it --env-file ../configuration/licensing.env --name stk-baseline --rm ansys/stk/stk-engine-baseline:{version}-ubi8 connectconsole --interactive --nographics`
2727
2. Execute a Connect command such as `GetSTKVersion /` and verify you receive a correct response.
2828
3. Exit the Connect console by executing the command `exit`.
2929

StkEngineContainerization/linux/stk-engine-baseline/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.7'
22
services:
33
stk-engine-baseline:
4-
image: ansys/stk/stk-engine-baseline:12.8.0-ubi8
4+
image: ansys/stk/stk-engine-baseline:12.9.0-ubi8
55
build:
66
context: .
77
args:

StkEngineContainerization/linux/stk-engine-connect/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# By default, start from the base STK Engine image
22
# Uncomment the first line below if you built the stk-engine-custom-baseline image
3-
# ARG baseImage=ansys/stk/stk-engine-custom-baseline:12.8.0-ubi8
4-
ARG baseImage=ansys/stk/stk-engine-baseline:12.8.0-ubi8
3+
# ARG baseImage=ansys/stk/stk-engine-custom-baseline:12.9.0-ubi8
4+
ARG baseImage=ansys/stk/stk-engine-baseline:12.9.0-ubi8
55
FROM ${baseImage}
66

77
# Enable Connect to listen for external connections

StkEngineContainerization/linux/stk-engine-connect/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ This Docker image code sample demonstrates how to run the STK Engine for Linux C
1414

1515
### Build the Image
1616

17-
1. Run `docker build -t ansys/stk/stk-engine-connect:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.8.0`
17+
1. Run `docker build -t ansys/stk/stk-engine-connect:{version}-ubi8 .` on the command line in this directory after replacing `{version}` with the version number. i.e `12.9.0`
1818

1919
### Run the Container
2020

2121
The entrypoint of this container starts the Connect console in the foreground listening on the container's port `5001`. To start the container and verify its functionality:
2222

23-
1. Run the following command from this directory after replacing `{version}` with the version number. i.e `12.8.0`:
23+
1. Run the following command from this directory after replacing `{version}` with the version number. i.e `12.9.0`:
2424
`docker run -d -p 5001:5001 --env-file ../configuration/licensing.env --name stk-connect --rm ansys/stk/stk-engine-connect:{version}-ubi8`
2525
* If port `5001` is already in use on your machine, map a different port (e.g. `1234:5001`).
2626

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
version: '3.7'
22
services:
33
stk-engine-connect:
4-
image: ansys/stk/stk-engine-connect:12.8.0-ubi8
4+
image: ansys/stk/stk-engine-connect:12.9.0-ubi8
55
build:
66
context: .
77
args:
88
# Uncomment the first line below if you built the stk-engine-custom-baseline image
9-
# baseImage=ansys/stk/stk-engine-custom-baseline:12.8.0-ubi8
10-
baseImage: ansys/stk/stk-engine-baseline:12.8.0-ubi8
9+
# baseImage=ansys/stk/stk-engine-custom-baseline:12.9.0-ubi8
10+
baseImage: ansys/stk/stk-engine-baseline:12.9.0-ubi8
1111
ports:
1212
- 5001:5001
1313
env_file: ../configuration/licensing.env

0 commit comments

Comments
 (0)