This repository was archived by the owner on Apr 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
fix: start dev on podman does not work if odo can't retrieve podman status #773
Merged
openshift-merge-bot
merged 13 commits into
redhat-developer:main
from
sbouchet:issue-637
Apr 12, 2024
Merged
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f71838c
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet 7afbf37
Merge branch 'main' into issue-637
sbouchet 76b11fd
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet 4c93a4d
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet cbfe8de
Merge branch 'main' into issue-637
sbouchet 9e23bda
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet 9e3b62e
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet ade3bc5
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet 227b1e0
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet cacfa42
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet 4561ce2
Merge branch 'main' into issue-637
sbouchet 69bea0d
Merge branch 'main' into issue-637
sbouchet 4232edb
fix: start dev on podman does not work if odo can't retrieve podman s…
sbouchet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/it/projects/springboot-rest/.circleci/run_tests_with_fmp.sh
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
110 changes: 0 additions & 110 deletions
110
src/it/projects/springboot-rest/.mvn/wrapper/MavenWrapperDownloader.java
This file was deleted.
Oops, something went wrong.
Binary file not shown.
1 change: 0 additions & 1 deletion
1
src/it/projects/springboot-rest/.mvn/wrapper/maven-wrapper.properties
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Getting Started | ||
|
||
### Reference Documentation | ||
|
||
For further reference, please consider the following sections: | ||
|
||
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) | ||
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.3.5.RELEASE/maven-plugin/reference/html/) | ||
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.3.5.RELEASE/maven-plugin/reference/html/#build-image) | ||
|
22 changes: 22 additions & 0 deletions
22
src/it/projects/springboot-rest/src/main/java/com/example/demo/DemoApplication.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.example.demo; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
|
||
@RestController | ||
@SpringBootApplication | ||
public class DemoApplication { | ||
|
||
@RequestMapping("/") | ||
String home() { | ||
return "Hello World!"; | ||
} | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(DemoApplication.class, args); | ||
} | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
src/it/projects/springboot-rest/src/test/java/com/example/demo/DemoApplicationTests.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.example.demo; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
|
||
@SpringBootTest | ||
class DemoApplicationTests { | ||
|
||
@Test | ||
void contextLoads() { | ||
} | ||
|
||
} |
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed because it causes slow actions updates.