-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Demonstration of PlanPreview feature #108
Open
nghialv
wants to merge
1
commit into
master
Choose a base branch
from
planpreview-demo
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
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
Ran plan-preview against head commit 49862b4 of this pull request. PipeCD detected app: helm-remote-chart, env: example, kind: kubernetesSync strategy: QUICK_SYNC Details (Click me)
--- Last Deploy
+++ Head Commit
# 1. name="helm-remote-chart-helloworld", kind="Deployment", namespace="default", apiVersion="apps/v1"
@@ -5,8 +5,8 @@
app.kubernetes.io/instance: helm-remote-chart
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: helloworld
- app.kubernetes.io/version: v0.11.0
- helm.sh/chart: helloworld-v0.11.0
+ app.kubernetes.io/version: v0.27.1
+ helm.sh/chart: helloworld-v0.27.1
name: helm-remote-chart-helloworld
spec:
replicas: 1
@@ -23,11 +23,11 @@
containers:
- args:
- server
- image: gcr.io/pipecd/helloworld:v0.11.0
+ image: gcr.io/pipecd/helloworld:v0.27.1
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
- path: /
+ path: /healthz
port: admin
name: helloworld
ports:
@@ -36,7 +36,7 @@
protocol: TCP
readinessProbe:
httpGet:
- path: /
+ path: /healthz
port: admin
resources: {}
securityContext: {}
# 2. name="helm-remote-chart-helloworld", kind="Service", namespace="default", apiVersion="v1"
@@ -5,8 +5,8 @@
app.kubernetes.io/instance: helm-remote-chart
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: helloworld
- app.kubernetes.io/version: v0.11.0
- helm.sh/chart: helloworld-v0.11.0
+ app.kubernetes.io/version: v0.27.1
+ helm.sh/chart: helloworld-v0.27.1
name: helm-remote-chart-helloworld
spec:
ports:
app: simple, env: example, kind: terraformSync strategy: QUICK_SYNC Details (Click me)
Terraform will perform the following actions:
# google_storage_bucket_object.object must be replaced
-/+ resource "google_storage_bucket_object" "object" {
~ content = (sensitive value) # forces replacement
~ content_type = "text/plain; charset=utf-8" -> (known after apply)
~ crc32c = "q/GYqQ==" -> (known after apply)
~ detect_md5hash = "ydxEf1G60kRGWDL3ezAglg==" -> "different hash" # forces replacement
- event_based_hold = false -> null
~ id = "pipecd-play-terraform-examples-simple/default.txt" -> (known after apply)
+ kms_key_name = (known after apply)
~ md5hash = "ydxEf1G60kRGWDL3ezAglg==" -> (known after apply)
~ media_link = "https://storage.googleapis.com/download/storage/v1/b/pipecd-play-terraform-examples/o/simple%2Fdefault.txt?generation=1648021023536090&alt=media" -> (known after apply)
- metadata = {} -> null
name = "simple/default.txt"
~ output_name = "simple/default.txt" -> (known after apply)
~ self_link = "https://www.googleapis.com/storage/v1/b/pipecd-play-terraform-examples/o/simple%2Fdefault.txt" -> (known after apply)
~ storage_class = "STANDARD" -> (known after apply)
- temporary_hold = false -> null
# (1 unchanged attribute hidden)
}
Plan: 1 to add, 0 to change, 1 to destroy.
─────────────────────────────────────────────────────────────────────────────
Note: You didn't use the -out option to save this plan, so Terraform can't
guarantee to take exactly these actions if you run "terraform apply" now.
1 to add, 0 to change, 1 to destroy
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request is just to demonstrate the PlanPreview feature.
https://pipecd.dev/docs/user-guide/plan-preview/