Skip to content

Instantly share code, notes, and snippets.

@johnroyer
Last active December 8, 2023 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnroyer/866dc919076c2a9b3e24ee5c1746c328 to your computer and use it in GitHub Desktop.
Save johnroyer/866dc919076c2a9b3e24ee5c1746c328 to your computer and use it in GitHub Desktop.
k8s deployment 格式
- name: phpfpm
image: php:8.1-alpine
imagePullPolicy: IfNotPresent
ports:
- containerPort: 9000
lifecycle:
postStart:
exec:
command:
- "/bin/sh"
- "-c"
- "cp -r /src/* /dest/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment