https://keyoxide.org/E4A43FE446208597647FB587E690DA7E4F291FA6
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
apiVersion: v1 | |
entries: | |
developer-hub: | |
- annotations: | |
artifacthub.io/category: integration-delivery | |
artifacthub.io/license: Apache-2.0 | |
artifacthub.io/links: | | |
- name: support | |
url: https://github.com/janus-idp/helm-backstage/issues | |
- name: Chart Source |
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
commands: | |
- exec: | |
commandLine: "echo build" | |
component: tools | |
group: | |
isDefault: true | |
kind: build | |
id: build | |
- exec: | |
commandLine: "sleep infinite" |
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
schemaVersion: 2.0.0 | |
metadata: | |
name: java-quarkus-remotedev | |
version: 1.1.0 | |
website: https://quarkus.io | |
starterProjects: | |
- name: community | |
zip: | |
location: https://code.quarkus.io/d?e=io.quarkus%3Aquarkus-resteasy&e=io.quarkus%3Aquarkus-micrometer&e=io.quarkus%3Aquarkus-smallrye-health&e=io.quarkus%3Aquarkus-openshift&cn=devfile | |
- name: redhat-product |
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
schemaVersion: 2.0.0 | |
metadata: | |
name: java-quarkus | |
version: 1.0.0 | |
website: https://quarkus.io | |
projects: | |
- name: quarkus-ex | |
git: | |
location: https://github.com/odo-devfiles/quarkus-ex | |
components: |
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
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
labels: | |
component: {{.COMPONENT_NAME}} | |
stage: deploy | |
name: {{.COMPONENT_NAME}} | |
namespace: tkral-test | |
spec: |
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
apiVersion: 1.0.0 | |
metadata: | |
name: odo | |
projects: | |
- name: odo | |
clonePath: src/github.com/openshift/odo | |
source: | |
location: 'https://github.com/kadel/odo.git' | |
type: git | |
components: |
Last update: 2020-04-09 17:31:45 (UTC)
Generated with https://github.com/kadel/odo-tools
Failures | Test Name |
---|---|
84 | [Fail] odo preference and config command tests when using --now with config command [It] should successfully set and unset variables |
22 | [Fail] odo devfile url command tests Describing urls [It] should describe appropriate URL and error messages |
19 | [Fail] odo sub component command tests Creating component [It] should describe not pushed component when it is created with json output |
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
FROM node:12 | |
EXPOSE 3000 | |
WORKDIR /app | |
ADD . /app/ | |
RUN npm install | |
RUN npm run build |
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
FROM maven:3.6.3-jdk-11-openj9 | |
WORKDIR /src | |
# to benefit from docker build cache | |
COPY pom.xml /src/pom.xml | |
RUN mvn dependency:go-offline | |
COPY . /src | |
RUN mvn package -DskipTests |
NewerOlder