Last active
December 21, 2024 11:16
-
-
Save safizn/a37f399fb2706cf8d73331f42b840ddf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: deployment | |
spec: | |
template: | |
spec: | |
containers: | |
- name: container | |
envFrom: | |
- configMapRef: | |
name: configuration | |
This file contains hidden or 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
apiVersion: kustomize.config.k8s.io/v1beta1 | |
kind: Kustomization | |
resources: | |
- deployment.yml | |
namespace: A | |
This file contains hidden or 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
apiVersion: kustomize.config.k8s.io/v1beta1 | |
kind: Kustomization | |
resources: | |
- ../base | |
namePrefix: dev- | |
configMapGenerator: | |
- name: configuration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment