Last active
June 24, 2020 05:46
-
-
Save anny0739/7aa4dedbcd808eef8f71f5c4cb38d6e0 to your computer and use it in GitHub Desktop.
KubernetesLabels.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
public class KubernetesLables { | |
@JsonProperty("beta.kubernetes.io/arch") | |
private String betaArch; | |
@JsonProperty("beta.kubernetes.io/os") | |
private String betaOs; | |
@JsonProperty("kubernetes.io/arch") | |
private String arch; | |
@JsonProperty("kubernetes.io/hostname") | |
private String hostname; | |
@JsonProperty("kubernetes.io/os") | |
private String os; | |
@JsonProperty("kubernetes.io/master") | |
private String master; | |
} | |
public class KubernetesLablesDto { | |
private KubernetesLables labels; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment