Skip to content

Commit faae6d8

Browse files
bart-vmwareTimHessdependabot[bot]
authored
Merge main (at v4-rc1) into 4.x (#402)
* Add Valkey to Redis samples, update broken links (#385) * Add Valkey to Redis samples * Update links to Cloud Foundry and brokers * Update pivotal links * Update getting started links for TAP * Update links to v3 docs, remove links to guides * Fix remaining links * Update links to CF CLI * Update SSO links * Update TAP links * Replace Kubernetes prerequisite with Tanzu CLI * Update Fileshare Sample (#386) * Replace FileShare sample with new .NET 8 app * Add fileshare integration test, ability to skip logging during service creation * Apply suggestions from code review Co-authored-by: Bart Koelman <[email protected]> * Address feedback - nicer scripts - cleaner code - catch attempted uploads of files > 128MB - time-based upload file names - use IOptions to hold fileshare info - mention * Apply suggestions from code review Co-authored-by: Bart Koelman <[email protected]> * address PR Feedback - rename create-user script to add-user - FolderPath => SharePath - add hostedservice to manage fileshare connection, drop IOptions - add build badge - it's prettier * Apply suggestions from code review Co-authored-by: Bart Koelman <[email protected]> * PR feedback - HTTP DELETE - build badge `/` encoding - move project readme up a couple levels - file share config in singleton object - use a ViewModel for upload * Apply suggestions from code review Co-authored-by: Bart Koelman <[email protected]> * PR feedback - table for uploaded files - js formatting * fix badge, don't set ASPNETCORE_ENVIRONMENT * use DiskSpaceHealthContibutor instead of FileShareHealthContributor * skip configuring (a too-old version of) Ruby --------- Co-authored-by: Bart Koelman <[email protected]> * Update sample for Spring Boot Admin registration (#387) * Fix broken endpoint for health group in .http file (#388) * Fix broken links in FileShares readme (#389) * Add/update baseline .cfignore files (#390) * Add/update baseline .cfignore files * delete .dockerignore and .tanzuignore * Update connector samples (#393) * Remove Cloud Foundry support from CosmosDB sample * Update MongoDB sample * Update MySQL samples * Update PostgreSQL samples * Update RabbitMQ sample * Update Redis sample * Update SQL Server sample * Update Redis security sample to show DPAPI keys (#395) * Update Redis security sample to show DPAPI keys * Reformat file using Rider * Bump urllib3 from 2.2.2 to 2.5.0 Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.2 to 2.5.0. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@2.2.2...2.5.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.5.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump requests from 2.32.0 to 2.32.4 Bumps [requests](https://github.com/psf/requests) from 2.32.0 to 2.32.4. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.32.0...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Add a console/worker app for certificate auth (#391) * Update code fences in READMEs (#396) * Update references to new dev feed (#399) * Update references to new dev feed * Updates version pattern in project references * Auto-sync DotSettings files from Steeltoe v4-rc * Update `cf create-service` commands, fix cloud brokers * add placeholder workflows * Update referenced Steeltoe version to 4.x * Update FileShares sample for 4.x --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Tim Hess <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 24a2f4f commit faae6d8

File tree

243 files changed

+78351
-1070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+78351
-1070
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Configuration
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Configuration/src/ConfigurationProviders/**
17+
- .github/workflows/configuration.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Configuration/src/ConfigurationProviders/**
28+
- .github/workflows/configuration.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/management.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Management
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Security/src/ActuatorApi/**
17+
- .github/workflows/management.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Security/src/ActuatorApi/**
28+
- .github/workflows/management.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/mongodb.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: MongoDB
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/MongoDb/**
17+
- .github/workflows/mongodb.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/MongoDb/**
28+
- .github/workflows/mongodb.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/mysql-efcore.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: MySQL - Entity Framework Core
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/MySqlEFCore/**
17+
- .github/workflows/mysql-efcore.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/MySqlEFCore/**
28+
- .github/workflows/mysql-efcore.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/mysql.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: MySQL
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/MySql/**
17+
- .github/workflows/mysql.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/MySql/**
28+
- .github/workflows/mysql.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Network File Shares
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- FileShares/src/FileSharesWeb/**
17+
- .github/workflows/networkfileshares.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- FileShares/src/FileSharesWeb/**
28+
- .github/workflows/networkfileshares.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: PostgreSQL - Entity Framework Core
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/PostgreSqlEFCore/**
17+
- .github/workflows/postgresql-efcore.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/PostgreSqlEFCore/**
28+
- .github/workflows/postgresql-efcore.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/postgresql.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: PostgreSQL
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/PostgreSql/**
17+
- .github/workflows/postgresql.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/PostgreSql/**
28+
- .github/workflows/postgresql.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

.github/workflows/rabbitmq.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: RabbitMQ
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- '[0-9]+.x'
9+
paths:
10+
- .gitattributes
11+
- .gitignore
12+
- behave*
13+
- Pipfile*
14+
- pyenv.pkgs
15+
- '**/*.py'
16+
- Connectors/src/RabbitMQ/**
17+
- .github/workflows/rabbitmq.yml
18+
- .github/workflows/shared-test-workflow.yml
19+
pull_request:
20+
paths:
21+
- .gitattributes
22+
- .gitignore
23+
- behave*
24+
- Pipfile*
25+
- pyenv.pkgs
26+
- '**/*.py'
27+
- Connectors/src/RabbitMQ/**
28+
- .github/workflows/rabbitmq.yml
29+
- .github/workflows/shared-test-workflow.yml
30+
31+
concurrency:
32+
group: ${{ github.workflow }}-${{ github.ref }}
33+
cancel-in-progress: true
34+
35+
jobs:
36+
echo:
37+
if: ${{ github.repository == 'TNZ/steeltoe-samples' }}
38+
runs-on: tpe-nano
39+
40+
steps:
41+
- name: Verify trigger
42+
run: echo "Job was triggered successfully!"

0 commit comments

Comments
 (0)