Skip to content

Commit

Permalink
cluster-onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardW98 committed Mar 12, 2024
1 parent fd6a914 commit 25d3cc1
Show file tree
Hide file tree
Showing 37 changed files with 3,127 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cluster-onboarding/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*
!target/*-runner
!target/*-runner.jar
!target/lib/*
!target/quarkus-app/*
43 changes: 43 additions & 0 deletions cluster-onboarding/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
release.properties
.flattened-pom.xml

# Eclipse
.project
.classpath
.settings/
bin/

# IntelliJ
.idea
*.ipr
*.iml
*.iws

# NetBeans
nb-configuration.xml

# Visual Studio Code
.vscode
.factorypath

# OSX
.DS_Store

# Vim
*.swp
*.swo

# patch
*.orig
*.rej

# Local environment
.env

# Plugin directory
/.quarkus/cli/plugins/
4 changes: 4 additions & 0 deletions cluster-onboarding/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Cluster Onboarding workflow
As a user I would like to onboard to my k8s/ocp cluster by creating a namesapce

We can create set of secrets with kubeconfigs in the same namespace where the workflow is deployed and use workflow parameter with the secret name to connect to the right cluster.
5 changes: 5 additions & 0 deletions cluster-onboarding/cluster-onboarding-func/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*
!target/*-runner
!target/*-runner.jar
!target/lib/*
!target/quarkus-app/*
40 changes: 40 additions & 0 deletions cluster-onboarding/cluster-onboarding-func/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
release.properties

# Eclipse
.project
.classpath
.settings/
bin/

# IntelliJ
.idea
*.ipr
*.iml
*.iws

# NetBeans
nb-configuration.xml

# Visual Studio Code
.vscode
.factorypath

# OSX
.DS_Store

# Vim
*.swp
*.swo

# patch
*.orig
*.rej

# Local environment
.env
.mvn
Loading

0 comments on commit 25d3cc1

Please sign in to comment.