Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(build): Update with master (#28)
* fix(config): parse 'oauthScopes' stanzas that were incorrectly written (spinnaker#1376) * refactor(config): remove a pointless try/catch block * refactor(tests): remove an unused import * fix(config): parse 'oauthScopes' stanzas that were incorrectly written The old version of Lombok used in Halyard <=1.21 didn't copy @JsonProperty annotations to the generated methods. This means Jackson was seeing the field as 'oAuthScopes' and the getter/setter as a separate 'oauthScopes' property. The same data would be written to both properties, and during parsing whichever came last in the file would be persisted into the object. With new versions of Lombok (>=1.18.8), the @JsonProperty annotation is copied to the bean methods, so the 'oauthScopes' property disappears and Jackson can no longer parse those old files. This commit adds some methods to support parsing the files generated by previous versions of Halyard, but will no longer write out the incorrect duplicate data. * chore(copyright): add a missing copyright header * chore(dependencies): Autobump korkVersion (spinnaker#1375) * fix(core): Fix reading of external files as binary instead of text (spinnaker#1380) * feat(secret): decrypt secrets before sending to deck (spinnaker#1379) * feat(secret): decrypt secrets before sending to deck * code review changes * chore(dependencies): Autobump korkVersion (spinnaker#1383) * fix(build): remove old usage of korkVersion (spinnaker#1385) * chore(dependencies): Autobump korkVersion (spinnaker#1384) * chore(build): Update cloudbuild.yaml file (spinnaker#1388) Remove the $REPO_NAME variable from the cloudbuild.yaml file; this is being used to decide the name of the image to push which will not always correspond to the image name. In particular, if we start publishing both alpine and ubuntu images we'll want the image name to have a suffix reflecting that. * chore(dependencies): Autobump korkVersion (spinnaker#1389) * chore(dependencies): Autobump korkVersion (spinnaker#1390) * feat(plugins): adding halyard commands for plugins (spinnaker#1386) * feat(plugins): adding halyard commands for plugins * chore(refactor): use toMap instead of a concurrentMap collector * feat(notifications): Add Github Status support (spinnaker#1374) * chore(dependencies): Autobump korkVersion (spinnaker#1392) * feat(plugins): enable/disable downloading plugins (spinnaker#1393) * chore(dependencies): Autobump korkVersion (spinnaker#1394) * chore(dependencies): Autobump korkVersion (spinnaker#1395) * feat(kubernetes): Support for tolerations (spinnaker#1396) * fix(kubernetes): Added support for tolerationn Signed-off-by: rverma-nikiai <[email protected]> * feat(kubernetes): Added support for Tolerations Added support for tolerations Signed-off-by: rverma-nikiai <[email protected]> * feat(kubernetes): Support for tolerations * fix(kubernetes): Added support for Tolerations, fixed access * chore(dependencies): Autobump korkVersion (spinnaker#1397) * feat(artifacts): add feature flag to turn on artifactsRewrite (spinnaker#1398) * feat(deployments): Update component sizing command to allow container component sizing. (spinnaker#1387) * feat(deploy/kubernetes): Option to select the image variant to deploy (spinnaker#1401) * refactor(deploy/kubernetes): Removed duplicated code * feat(deploy/kubernetes): Option to select the image variant to deploy Supports `slim` and `ubuntu`, the former being the default. Ubuntu image supported starting with v1.16.0. * chore(dependencies): Autobump korkVersion (spinnaker#1403) * fix(docs): s/Kubenretes/Kubernetes (spinnaker#1402) * fix(ldap): Fix allowing back blank ldap search base when using search filter (spinnaker#1391) * chore(dependencies): Autobump korkVersion (spinnaker#1404) * chore(plugins): rename plugin downloading commands to kebab-case (spinnaker#1408) * chore(dependencies): Autobump korkVersion (spinnaker#1410) * refactor(deploy): Adapt to changes in kork-config (spinnaker#1407) * fix(notifications): fix editing notifications in halyard (spinnaker#1413) Broken in spinnaker#1374 Closes spinnaker/spinnaker#4834 * chore(dependencies): Autobump korkVersion (spinnaker#1415) * feat(front50): Support AWS S3 SSE (spinnaker#1399) * chore(dependencies): Autobump korkVersion (spinnaker#1417) * chore(dependencies): Autobump korkVersion (spinnaker#1418) * chore(dependencies): Autobump korkVersion (spinnaker#1419) * feat(telemetry): adds endpoint and enable settings for stats collection (spinnaker#1406) * feat(telemetry): adds endpoint and enable settings for telemetry * chore(dependencies): Autobump korkVersion (spinnaker#1421) * fix(eks): Halyard doesn't work with new EKS kube config (spinnaker#1382) Fixes spinnaker/spinnaker#4712 Signed-off-by: Constantin Muraru <[email protected]> * fix(stats): Replace UUID with ULID as spinnaker instance idententifier (spinnaker#1423) * feat(secrets): Support SAML metadata as secret (spinnaker#1411) * chore(dependencies): Autobump korkVersion (spinnaker#1426) * fix(saml): make email address configurable (spinnaker#1427) * fix(saml): make email address configurable * update commands for saml email * feat(canary): add newrelic as canary service (spinnaker#1422) * chore(core): Compile using the java compiler (spinnaker#1432) Only test code is written in groovy, so we never have to worry about java code depending on groovy code; remove the override that is causing java source files to be compiled with the groovy compiler. * fix(kubeconfig): Get contents of local kubeconfig files (spinnaker#1425) * chore(dependencies): Autobump korkVersion (spinnaker#1433) * chore(dependencies): Autobump korkVersion (spinnaker#1440) * feat(plugins): enable plugin config overrides (spinnaker#1439) * feat(plugins): enable plugin config overrides * chore(plugins): create getPluginConfigurations in Plugins class * feat(build): Ubuntu base image support (spinnaker#1438) * Composing the docker images build by having a shared first stage to build the JAR. * Release scripts support both default and ubuntu image variants. Fully backward compatible as the existing tagging convention is left untouched, the new ubuntu images have their version tag appended with `-ubuntu`. * Deleted unused Dockerfile and cloudbuild config files. * fix(install): fix the problem with JDK 13.0 (spinnaker#1445) * feat(signalfx): add endpoint, scope and location configuration (spinnaker#1429) * feat(secrets/gcs): Support for decrypting spinnaker secrets in GCS (spinnaker#1441) * feat(monitoring): add new relic monitoring daemon config (spinnaker#1442) * feat(canary): add new relic monitoring daemon config * feat(monitoring): replace short description for metric store commands s/authentication method/metric store * feat(kubernetes): add flag for Kubernetes custom resources (spinnaker#1436) * feat(kubernetes): add flag for Kubernetes custom resources Adds flag `--custom-resources` to specify CRDs that should be cached by clouddriver. Defining custom resources here is required for them to be used in patch and delete pipeline stages. * feat(kubernetes) validation for customResources and allow setting all fields * Update docs for custom resources flag * feat(kubernetes): clean up CLI arguments for adding custom resources Switched from serialized format for setting fields to only allowing adding custom resource when editing an account. `--spinnaker-kind` and `--versioned` are optional but are not valid arguments without `--add-custom-resource`. * feat(kubernetes): fix docs * chore(dependencies): Autobump korkVersion (spinnaker#1447) * fix(kubernetes): remove user-facing references to todo(lwander) (spinnaker#1449) * fix(kubernetes): remove user-facing references to todo(lwander) * fix(kubernetes): formatting * test(k8s): Verify propagation of service account name to pod spec. (spinnaker#1450) * fix(plugins): plugins should be able to reference their own config values (spinnaker#1444) * fix(halyard): Change deployment to support new Kubernetes API (… (spinnaker#1443) * chore(core): remove unused jobs feature flag (spinnaker#1451) * chore(dependencies): Autobump korkVersion (spinnaker#1448) * refactor(google): Update to latest google credentials style. (spinnaker#1452) * fix(deployments): Fix sub-service name for HA echo in warning m… (spinnaker#1435) * feat(slack): Allow configurable slack endpoint (spinnaker#1446) * chore(dependencies): Autobump korkVersion (spinnaker#1453) * feat(config): HalconfigDirStruct source of truth, allow override (spinnaker#1454) * feat(artifacts): add git repo artifact support (spinnaker#1458) * fix(provider/aws): Support for specifying lifecycle hooks for AWS accounts (spinnaker#1420) * fix(provider/aws): Support for specifying lifecycle hooks for AWS accounts
- Loading branch information