-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Minikube and GCP k8s generation in the backend * UI features to allow platform selection * Full platform set * Breaking up structure * Standard break-up of more code * Added K8s secret instructions * Update K8s launch instructions * Tweak podman/docker instructions to be specific to platform * Fix typescript types * Pass through platform and version to generator * Get rid of ../resources hack * Import templates from trustgraph, 0.13 * Bedrock works
- Loading branch information
1 parent
d95f613
commit a4be388
Showing
27 changed files
with
1,345 additions
and
419 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
import React from 'react' | ||
|
||
interface DeploymentCodeProps extends React.PropsWithChildren { | ||
children : React.ReactNode; | ||
}; | ||
|
||
const DeploymentCode : React.FC<DeploymentCodeProps> = | ||
({children}) => { | ||
return ( | ||
<pre> | ||
{children} | ||
</pre> | ||
); | ||
} | ||
|
||
export default DeploymentCode; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
import React from 'react' | ||
|
||
interface DeploymentEnvVarsProps { | ||
variables : { | ||
name : string; | ||
value : string; | ||
}[]; | ||
}; | ||
|
||
const DeploymentEnvVars : React.FC<DeploymentEnvVarsProps> = | ||
({variables}) => { | ||
|
||
return ( | ||
<pre> | ||
{ | ||
variables.map( | ||
(va) => { | ||
return ( | ||
<React.Fragment key={va.name}> | ||
export {va.name}=<span className="variable"> | ||
{va.value} | ||
</span> | ||
<br/> | ||
</React.Fragment> | ||
); | ||
} | ||
) | ||
} | ||
</pre> | ||
); | ||
} | ||
|
||
export default DeploymentEnvVars; | ||
|
Oops, something went wrong.