Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,532
Community Members
 
Community Events
184
Community Groups

bamboo-specs deployment permission

Deleted user Sep 23, 2019

I have this Deployment and I'm trying to add a permission for this deployment

---
version: 2
deployment:
name: deploy_name
source-plan: key-key

release-naming:
next-version-name: release-${bamboo.buildNumber}

environments:
- Test

Test:
tasks:
- clean
- artifact-download:
destination: .
- script:
- '#!/bin/bash'
- echo 'ok'

---
version: 2
deployment: deploy_name

environment-permissions:
- Test:
- users:
- administrator
groups:
- group_name
permissions:
- view
- deploy

 

but I'm getting the error below:

Bamboo YAML import failed: Document structure is incorrect: deployment: Element is of wrong type. Expected MapNode, found StringNode

How I solve this problem? because in the documentation say fo create in different documents.

I tried putting in the same document and get other error:

Bamboo YAML import failed: Invalid format of the YAML file: mapping values are not allowed here
 in 'reader', line 94, column 24:
    environment-permissions:
                           ^

 

1 answer

0 votes
Rafael Pinto Sperafico
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 30, 2019

Hi @[deleted] ,

It is important to notice that Bamboo Specs YAML Version 2.0 was introduced in Bamboo v6.9 as described in https://confluence.atlassian.com/bamboo/bamboo-6-9-release-notes-969521942.html.

If you are running Bamboo v6.9 or above, then the 1st error:

Bamboo YAML import failed: Document structure is incorrect: deployment: Element is of wrong type. Expected MapNode, found StringNode

relates to a deployment without a name:

---
version: 2
deployment: DEPLOYMENT NAME

Please, refer to Bamboo YAML documentation https://docs.atlassian.com/bamboo-specs-docs/6.9.0/specs.html?yaml#deployment-permissions as it provides you with more information on how to set up Deployment and Environment permissions.

Then, the subsequent error:

Bamboo YAML import failed: Invalid format of the YAML file: mapping values are not allowed here
 in 'reader', line 94, column 24:
    environment-permissions:
                           ^

Relates to a missing part in the documentation where deployment-permissions must be declared. Therefore, you should be running the following instead:

---
version: 2
deployment: DEPLOYMENT NAME

deployment-permissions:
- users:
- admin

environment-permissions:
- Test:
- users:
- admin

I have commented on this missing information internally and it should be amended in the documentation soon.

Kind regards,
Rafael

Rafael Pinto Sperafico
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 30, 2019

Hi @[deleted] ,

As mentioned previously, you can find the issue reported on https://jira.atlassian.com/browse/BAM-20652 - Bamboo Specs YAML documentation must inform required properties.

Please, feel free to add any comments to the link mentioned or in this thread in case something is missing.

Kind regards,
Rafael

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events