使用Placehodler更新文件内容

问题描述 投票:0回答:1

我有以下yaml文件,我想提供一个占位符以更新图像名称(例如myimage)使用make target

这是yaml


apiVersion: apps/v1
kind: Deployment
metadata:
  name: app
spec:
  replicas: 1
      app: app
  template:
    metadata:
      labels:
        app: app
    spec:
      containers:
        - name: app
          image: %IMG_NAME%. //this the value to update
          imagePullPolicy: Always
          ports:
            - containerPort: 5000
          resources:
            limits:
              memory: 50Mi
            requests:
              memory: 25Mi

我尝试执行以下操作,不知道吗?

update-dep:
    sed -e ’s,myimage,’$IMG_NAME',g' < deployment.yaml
linux shell sed makefile
1个回答
2
投票

我不知道为什么你会这样写update-dep:。那是什么?

© www.soinside.com 2019 - 2024. All rights reserved.