Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fabric8 istio IT upgrade (3) #1760

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author wind57
*/
@SpringBootApplication
public class IstioApp {
class IstioApp {

public static void main(String[] args) {
SpringApplication.run(IstioApp.class, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@
* @author wind57
*/
@RestController
public class IstioController {
class IstioController {

private final Environment environment;

// not used, but just to prove that it is injected
private final IstioClient istioClient;

public IstioController(Environment environment, IstioClient istioClient) {
IstioController(Environment environment, IstioClient istioClient) {
this.environment = environment;
this.istioClient = istioClient;
}

@GetMapping("/profiles")
public List<String> profiles() {
List<String> profiles() {
return Arrays.asList(environment.getActiveProfiles());
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
busybox:1.36.1
istio/istioctl:1.20.5
istio/proxyv2:1.20.5
istio/pilot:1.20.5
istio/istioctl:1.21.6
istio/proxyv2:1.21.6
istio/pilot:1.21.6
confluentinc/cp-kafka:7.2.1
rabbitmq:3-management
wiremock/wiremock:3.4.2
Loading