dnf install python3 python3-pip sqlite
sudo python3 -m pip install --upgrade pip
python3 -m pip install --user bcrypt
This file contains hidden or 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
| FROM registry.fedoraproject.org/fedora-minimal:latest | |
| WORKDIR /content | |
| RUN microdnf -y install cmake make git /usr/bin/python3 python3-pyyaml \ | |
| python3-jinja2 openscap-utils python3-setuptools \ | |
| jq vim scap-security-guide python3-pip python3-pygithub.noarch && \ | |
| python3 -m pip install --upgrade pip && \ | |
| python3 -m pip install --no-cache sh && \ | |
| rm -rf /var/cache/yum /var/cache/dnf |
This file contains hidden or 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
| kind: DevWorkspace | |
| apiVersion: workspace.devfile.io/v1alpha2 | |
| metadata: | |
| name: code-latest | |
| spec: | |
| started: true | |
| template: | |
| attributes: | |
| .continue/config.json: | | |
| { |
This file contains hidden or 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
| kind: PersistentVolumeClaim | |
| apiVersion: v1 | |
| metadata: | |
| name: basic-thin-pvc | |
| spec: | |
| accessModes: | |
| - ReadWriteOnce | |
| resources: | |
| requests: | |
| storage: 5Gi |
This file contains hidden or 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
| apiVersion: v1 | |
| additionalTrustBundlePolicy: Always | |
| baseDomain: mydomain.com | |
| #credentialsMode: Mint | |
| controlPlane: | |
| hyperthreading: Enabled | |
| name: master | |
| platform: | |
| aws: | |
| # zones: # typically derived from the subnets listed later in the file |
This file contains hidden or 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
| apiVersion: ols.openshift.io/v1alpha1 | |
| kind: OLSConfig | |
| metadata: | |
| name: cluster | |
| spec: | |
| llm: | |
| providers: | |
| - credentialsSecretRef: | |
| name: credentials | |
| models: |
This file contains hidden or 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
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: Template for creating a disconnected VPC in up to 3 AZs | |
| Parameters: | |
| VpcCidr: | |
| AllowedPattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/(1[6-9]|2[0-4]))$ | |
| ConstraintDescription: CIDR block parameter must be in the form x.x.x.x/16-24. | |
| Default: 10.0.0.0/16 | |
| Description: CIDR block for VPC. |
This file contains hidden or 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
| schemaVersion: 2.1.0 | |
| metadata: | |
| name: codeassist-images | |
| attributes: | |
| controller.devfile.io/storage-type: ephemeral | |
| controller.devfile.io/scc: container-build | |
| .continue/config.json: | | |
| { | |
| "allowAnonymousTelemetry": false, | |
| "models": [ |
NewerOlder