-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding fabric8 k8s library and helm client project
Signed-off-by: Deepak Mishra <[email protected]>
- Loading branch information
1 parent
6a29222
commit b09066a
Showing
5 changed files
with
149 additions
and
2 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
4 changes: 4 additions & 0 deletions
4
...rc/main/java/com/hedera/fullstack/infrastructure/api/providers/InfrastructureManager.java
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,4 @@ | ||
package com.hedera.fullstack.infrastructure.api.providers; | ||
|
||
public interface InfrastructureManager { | ||
} |
10 changes: 10 additions & 0 deletions
10
...main/java/com/hedera/fullstack/infrastructure/api/providers/K8sInfrastructureManager.java
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,10 @@ | ||
package com.hedera.fullstack.infrastructure.api.providers; | ||
|
||
import com.hedera.fullstack.helm.client.HelmClient; | ||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
|
||
public class K8sInfrastructureManager implements InfrastructureManager { | ||
HelmClient helmClient; | ||
KubernetesClient k8sClient; | ||
|
||
} |
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
module com.hedera.fullstack.infrastructure.api {} | ||
module com.hedera.fullstack.infrastructure.api { | ||
requires com.hedera.fullstack.helm.client; | ||
requires io.fabric8.kubernetes.client.api; | ||
} |