forked from oracle/docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df7825a
commit f8bd204
Showing
5 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
OracleLinuxDevelopers/oraclelinux8/kubectl/1.29/Dockerfile
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,14 @@ | ||
# Copyright (c) 2024 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
# OCNE 1.9 - Kubectl 1.29 | ||
|
||
FROM ghcr.io/oracle/oraclelinux:8 | ||
|
||
RUN dnf install -y oracle-olcne-release-el8 && \ | ||
dnf config-manager --enable ol8_olcne19 ol8_addons ol8_baseos_latest ol8_appstream && \ | ||
dnf install -y kubectl && \ | ||
rm -rf /var/cache/dnf | ||
|
||
ENTRYPOINT ["kubectl"] | ||
|
||
CMD ["--help"] |
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
20 changes: 20 additions & 0 deletions
20
OracleLinuxDevelopers/oraclelinux8/ocne-tools/1.9/Dockerfile
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,20 @@ | ||
# Copyright (c) 2024 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
# hadolint ignore=DL3007 | ||
FROM ghcr.io/oracle/oci-cli:latest | ||
|
||
USER root | ||
|
||
RUN dnf install -y oracle-olcne-release-el8 && \ | ||
dnf config-manager --enable ol8_olcne19 ol8_addons ol8_baseos_latest ol8_appstream && \ | ||
dnf install -y helm kubectl && \ | ||
rm -rf /var/cache/dnf | ||
|
||
COPY help.sh /opt/help.sh | ||
|
||
USER oracle | ||
|
||
ENTRYPOINT [] | ||
|
||
CMD ["/bin/bash", "/opt/help.sh"] |
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,11 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2024 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
echo "OCNE/OKE Tools" | ||
|
||
echo "oci-cli version: $(oci --version)" | ||
helm version --template='helm version: {{.Version}}' | ||
echo '' | ||
echo "kubectl versions: " | ||
kubectl version --client |
14 changes: 14 additions & 0 deletions
14
OracleLinuxDevelopers/oraclelinux9/kubectl/1.29/Dockerfile
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,14 @@ | ||
# Copyright (c) 2024 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
# OCNE 1.9 - Kubectl 1.29 | ||
|
||
FROM ghcr.io/oracle/oraclelinux:9 | ||
|
||
RUN dnf install -y oracle-olcne-release-el9 && \ | ||
dnf config-manager --enable ol9_olcne19 ol9_addons ol9_baseos_latest ol9_appstream && \ | ||
dnf install -y kubectl && \ | ||
rm -rf /var/cache/dnf | ||
|
||
ENTRYPOINT ["kubectl"] | ||
|
||
CMD ["--help"] |