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
HTTP/2 302 | |
date: Thu, 12 Dec 2019 20:55:30 GMT | |
content-length: 0 | |
location: https://spinnaker.clearmetal.io | |
access-control-allow-credentials: true | |
access-control-allow-origin: * | |
access-control-allow-methods: POST, GET, OPTIONS, DELETE, PUT, PATCH | |
access-control-max-age: 3600 | |
access-control-allow-headers: x-requested-with, content-type, authorization, X-RateLimit-App, X-Spinnaker-Priority | |
access-control-expose-headers: X-AUTH-REDIRECT-URL |
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
2019-12-12 20:49:11.252 ERROR 1 --- [ handlers-20] c.n.s.orca.q.handler.RunTaskHandler : [] Error running CreateBakeManifestTask for pipeline[01DVXXY9F9PQWFN8CXSQM7YHPM] | |
retrofit.RetrofitError: 500 | |
at retrofit.RetrofitError.httpError(RetrofitError.java:40) | |
at retrofit.RestAdapter$RestHandler.invokeRequest(RestAdapter.java:388) | |
at retrofit.RestAdapter$RestHandler.invoke(RestAdapter.java:240) | |
at com.sun.proxy.$Proxy119.bakeManifest(Unknown Source) | |
at com.netflix.spinnaker.orca.bakery.tasks.manifests.CreateBakeManifestTask.execute(CreateBakeManifestTask.java:140) | |
at com.netflix.spinnaker.orca.q.handler.RunTaskHandler$handle$1$2$1.invoke(RunTaskHandler.kt:113) | |
at com.netflix.spinnaker.orca.q.handler.RunTaskHandler$handle$1$2$1.invoke(RunTaskHandler.kt:69) | |
at com.netflix.spinnaker.orca.q.handler.RunTaskHandler.withLoggingContext(RunTaskHandler.kt:318) |
This file has been truncated, but you can view the full file.
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
_ _ _ | |
| |__ __ _| |_ _ __ _ _ __ __| | | |
| '_ \ / _` | | | | |/ _` | '__/ _` | | |
| | | | (_| | | |_| | (_| | | | (_| | | |
|_| |_|\__,_|_|\__, |\__,_|_| \__,_| | |
|___/ | |
2019-11-11 23:53:51.900 INFO 7 --- [ main] com.netflix.spinnaker.halyard.Main : Starting Main v1.20.2-20190520111848 on spinnaker-ingress-spinna-halyard-0.spinnaker-ingress-spinna-halyard.default.svc.cluster.local with PID 7 (/opt/halyard/lib/halyard-web-1.20.2-20190520111848.jar started by spinnaker in /workdir) | |
2019-11-11 23:53:51.905 INFO 7 --- [ main] com.netflix.spinnaker.halyard.Main : The following profiles are active: test,local | |
2019-11-11 23:53:52.583 INFO 7 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2ed2d9cb: startup date [Mon Nov 11 23:53:52 UTC 2019]; root of context hierarchy |
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
AWSTemplateFormatVersion: '2010-09-09' | |
Description: Setup AWS CloudProvider for Spinnaker | |
Parameters: | |
SpinnakerVPCCIDR: | |
Description: CIDR Block for Developer VPC | |
Type: String | |
Default: 10.100.0.0/16 | |
SpinnakerPublicSubnet1CIDR: | |
Description: SpinnakerEnv Public Subnet | |
Type: String |
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
module "label" { | |
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.14.1" | |
namespace = var.namespace | |
stage = var.stage | |
name = var.name | |
attributes = var.attributes | |
delimiter = var.delimiter | |
tags = var.tags | |
enabled = var.enabled | |
} |
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
data "aws_iam_policy_document" "default" { | |
count = var.enabled ? 1 : 0 | |
statement { | |
actions = var.s3_actions | |
resources = var.s3_resources | |
effect = "Allow" | |
} | |
} |
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
module "default_label" { | |
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.14.1" | |
enabled = var.enabled | |
namespace = var.namespace | |
stage = var.stage | |
name = var.name | |
delimiter = var.delimiter | |
attributes = var.attributes | |
tags = var.tags | |
} |
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
halyard: | |
spinnakerVersion: 1.16.1 | |
image: | |
repository: gcr.io/spinnaker-marketplace/halyard | |
tag: 1.23.2 | |
pullSecrets: [] | |
# Set to false to disable persistence data volume for halyard | |
persistence: | |
enabled: true | |
# Provide a config map with Hal commands that will be run the core config (storage) |
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
def set_up_dag_run(context, dag_run_obj): | |
dag_run_obj.payload = {"config": context["config"]} | |
dag_run_obj.run_id = str(uuid4()) | |
print context | |
return dag_run_obj | |
def launch_workflow_command(args): | |
config_location = args.config_location | |
analysis_id = args.analysis_id |