-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor resource names and clean up
- Loading branch information
1 parent
cb76a5c
commit d69b62d
Showing
11 changed files
with
49 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
bin | ||
target | ||
|
||
# editor and IDE paraphernalia | ||
.idea | ||
*.swp | ||
*.swo | ||
*~ |
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
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
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,23 @@ | ||
package io.halkyon; | ||
|
||
import io.fabric8.kubernetes.client.KubernetesClient; | ||
import io.javaoperatorsdk.operator.api.reconciler.Context; | ||
import io.javaoperatorsdk.operator.api.reconciler.Reconciler; | ||
import io.javaoperatorsdk.operator.api.reconciler.UpdateControl; | ||
|
||
public class ClaimReconciler implements Reconciler<Claim> { | ||
private final KubernetesClient client; | ||
|
||
public ClaimReconciler(KubernetesClient client) { | ||
this.client = client; | ||
} | ||
|
||
// TODO Fill in the rest of the reconciler | ||
|
||
@Override | ||
public UpdateControl<Claim> reconcile(Claim resource, Context context) { | ||
// TODO: fill in logic | ||
|
||
return UpdateControl.noUpdate(); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...src/main/java/io/halkyon/PrimazaSpec.java → ...r/src/main/java/io/halkyon/ClaimSpec.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package io.halkyon; | ||
|
||
public class PrimazaSpec { | ||
public class ClaimSpec { | ||
|
||
// Add Spec information here | ||
} |
2 changes: 1 addition & 1 deletion
2
...c/main/java/io/halkyon/PrimazaStatus.java → ...src/main/java/io/halkyon/ClaimStatus.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package io.halkyon; | ||
|
||
public class PrimazaStatus { | ||
public class ClaimStatus { | ||
|
||
// Add Status information here | ||
} |
This file was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
quarkus.container-image.build=true | ||
#quarkus.container-image.group= | ||
quarkus.container-image.name=primaza-operator-operator | ||
quarkus.container-image.name=expose-operator | ||
# set to true to automatically apply CRDs to the cluster when they get regenerated | ||
quarkus.operator-sdk.crd.apply=true | ||
quarkus.operator-sdk.crd.apply=false |
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 |
---|---|---|
|
@@ -187,6 +187,7 @@ | |
|
||
<modules> | ||
<module>app</module> | ||
<module>operator</module> | ||
</modules> | ||
|
||
<profiles> | ||
|