Re: ARIA-354 Verified

2017-11-27 Thread Miguel Angel Jimenez Achinte
OH, indeed that's pro :D

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 6:51 PM, Tal Liron  wrote:

> In your case, I would replace the "pip install" line with this one:
>
> make install-virtual
>
> This will install your checked-out git repo in development mode into the
> virtual environment, meaning that any code changes you make will
> immediately be reflected. This is how we pro devs work. :)
>
> On Mon, Nov 27, 2017 at 8:06 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> > I'm sorry if that was confusing. I checked out the 0.1.1 tag because the
> > working blueprint is there.
> > To install ARIA, I used pip.
> >
> > Just to make sure everything is clear, these are the steps I executed:
> >
> > sudo pip install virtualenv
> > virtualenv tosca-environment
> > source tosca-environment/bin/activate
> > pip install apache-ariatosca[ssh]
> > git clone https://github.com/apache/incubator-ariatosca.git
> > cd incubator-ariatosca
> > git checkout tags/0.1.1
> > aria service-templates store examples/hello-world/helloworld.yaml
> > my-service-template
> > aria services create my-service -t my-service-template
> > aria executions start install -s my-service
> > curl http://localhost:9090
> >
> > 
> > 
> > ARIA Hello World
> > 
> > 
> > Hello, World!
> > 
> > blueprint_id = my-service-template3
> > deployment_id = my-service2
> > node_id = web_app_1
> > 
> > 
> > 
> > 
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 5:53 PM, Tal Liron  wrote:
> >
> > > I'm confused, Miguel. You checked out the git repository, but then
> > > installed ARIA from the PyPI (using pip). I would recommend not mixing
> > the
> > > two methods, because indeed if the git repo is at master's tip, then it
> > > would not much what was last released to PyPI. You found a workaround
> > here,
> > > using tags, but I wouldn't recommend this generally.
> > >
> > > If you use the git repo, just running "make install" should do what you
> > > need.
> > >
> > > On Mon, Nov 27, 2017 at 7:48 PM, Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > > > Okay, it's working now.
> > > > I needed to check out the tag 0.1.1. The complete list of commands
> is:
> > > >
> > > > sudo pip install --upgrade setuptools
> > > > sudo pip install apache-ariatosca[ssh]
> > > > ...
> > > > aria --version
> > > > v0.1.1
> > > > ...
> > > > git clone https://github.com/apache/incubator-ariatosca; cd
> > > > incubator-ariatosca
> > > > git checkout tags/0.1.1
> > > > aria service-templates store examples/hello-world/helloworld.yaml
> > > > my-service-template
> > > >
> > > > Notice that in tag 0.1.1, the blueprint's name is helloworld.yaml,
> > > without
> > > > the hyphen.
> > > >
> > > >
> > > > --
> > > > Miguel Jimenez, PhD student
> > > > Department of Computer Science
> > > > University of Victoria
> > > > Engineering/Computer Science Building (ECS), Room 412
> > > > Victoria, BC
> > > > V8W 3p6 Canada
> > > >
> > > > On Mon, Nov 27, 2017 at 3:28 PM, Vishwanath Jayaraman <
> > > > vishwana...@hotmail.com> wrote:
> > > >
> > > > > Ok, got it.
> > > > >
> > > > >
> > > > > Vish
> > > > >
> > > > >
> > > > > 
> > > > > From: Tal Liron 
> > > > > Sent: Monday, November 27, 2017 5:19 PM
> > > > > To: dev@ariatosca.incubator.apache.org
> > > > > Subject: Re: ARIA-354 Verified
> > > > >
> > > > > Vish, I'm pretty sure the version suffix is not required, because
> > 0.1.1
> > > > is
> > > > > the highest version.
> > > > >
> > > > > On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
> > > > > vishwana...@hotmail.com> wrote:
> > > > >
> > > > > >
> > > > > > You need to execute
> > > > > >
> > > > > > pip install apache-ariatosca[ssh]==0.1.1
> > > > > >
> > > > > > Sent from my iPhone
> > > > > >
> > > > > > On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> > > > > > mig...@rigiresearch.com> wrote:
> > > > > >
> > > > > > I executed: pip install apache-ariatosca[ssh]
> > > > > > Should I use "pip install apache-ariatosca[ssh]==0.1.1
> --no-binary
> > > > > > apache-ariatosca" instead?
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Miguel Jimenez, PhD student
> > > > > > Department of Computer Science
> > > > > > University of Victoria
> > > > > > Engineering/Computer Science Building (ECS), Room 412
> > > > > > Victoria, BC
> > > > > > V8W 3p6 Canada
> > > > > >
> > > > > > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  >  > > > tal@
> > > > > > cloudify.co>> wrote:
> > > > > >
> > > > > > 

Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
In your case, I would replace the "pip install" line with this one:

make install-virtual

This will install your checked-out git repo in development mode into the
virtual environment, meaning that any code changes you make will
immediately be reflected. This is how we pro devs work. :)

On Mon, Nov 27, 2017 at 8:06 PM, Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

> I'm sorry if that was confusing. I checked out the 0.1.1 tag because the
> working blueprint is there.
> To install ARIA, I used pip.
>
> Just to make sure everything is clear, these are the steps I executed:
>
> sudo pip install virtualenv
> virtualenv tosca-environment
> source tosca-environment/bin/activate
> pip install apache-ariatosca[ssh]
> git clone https://github.com/apache/incubator-ariatosca.git
> cd incubator-ariatosca
> git checkout tags/0.1.1
> aria service-templates store examples/hello-world/helloworld.yaml
> my-service-template
> aria services create my-service -t my-service-template
> aria executions start install -s my-service
> curl http://localhost:9090
>
> 
> 
> ARIA Hello World
> 
> 
> Hello, World!
> 
> blueprint_id = my-service-template3
> deployment_id = my-service2
> node_id = web_app_1
> 
> 
> 
> 
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 5:53 PM, Tal Liron  wrote:
>
> > I'm confused, Miguel. You checked out the git repository, but then
> > installed ARIA from the PyPI (using pip). I would recommend not mixing
> the
> > two methods, because indeed if the git repo is at master's tip, then it
> > would not much what was last released to PyPI. You found a workaround
> here,
> > using tags, but I wouldn't recommend this generally.
> >
> > If you use the git repo, just running "make install" should do what you
> > need.
> >
> > On Mon, Nov 27, 2017 at 7:48 PM, Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> > > Okay, it's working now.
> > > I needed to check out the tag 0.1.1. The complete list of commands is:
> > >
> > > sudo pip install --upgrade setuptools
> > > sudo pip install apache-ariatosca[ssh]
> > > ...
> > > aria --version
> > > v0.1.1
> > > ...
> > > git clone https://github.com/apache/incubator-ariatosca; cd
> > > incubator-ariatosca
> > > git checkout tags/0.1.1
> > > aria service-templates store examples/hello-world/helloworld.yaml
> > > my-service-template
> > >
> > > Notice that in tag 0.1.1, the blueprint's name is helloworld.yaml,
> > without
> > > the hyphen.
> > >
> > >
> > > --
> > > Miguel Jimenez, PhD student
> > > Department of Computer Science
> > > University of Victoria
> > > Engineering/Computer Science Building (ECS), Room 412
> > > Victoria, BC
> > > V8W 3p6 Canada
> > >
> > > On Mon, Nov 27, 2017 at 3:28 PM, Vishwanath Jayaraman <
> > > vishwana...@hotmail.com> wrote:
> > >
> > > > Ok, got it.
> > > >
> > > >
> > > > Vish
> > > >
> > > >
> > > > 
> > > > From: Tal Liron 
> > > > Sent: Monday, November 27, 2017 5:19 PM
> > > > To: dev@ariatosca.incubator.apache.org
> > > > Subject: Re: ARIA-354 Verified
> > > >
> > > > Vish, I'm pretty sure the version suffix is not required, because
> 0.1.1
> > > is
> > > > the highest version.
> > > >
> > > > On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
> > > > vishwana...@hotmail.com> wrote:
> > > >
> > > > >
> > > > > You need to execute
> > > > >
> > > > > pip install apache-ariatosca[ssh]==0.1.1
> > > > >
> > > > > Sent from my iPhone
> > > > >
> > > > > On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> > > > > mig...@rigiresearch.com> wrote:
> > > > >
> > > > > I executed: pip install apache-ariatosca[ssh]
> > > > > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > > > > apache-ariatosca" instead?
> > > > >
> > > > >
> > > > > --
> > > > > Miguel Jimenez, PhD student
> > > > > Department of Computer Science
> > > > > University of Victoria
> > > > > Engineering/Computer Science Building (ECS), Room 412
> > > > > Victoria, BC
> > > > > V8W 3p6 Canada
> > > > >
> > > > > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron   > > tal@
> > > > > cloudify.co>> wrote:
> > > > >
> > > > > Miguel, how did you install ARIA?
> > > > >
> > > > > On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > > > > mig...@rigiresearch.com> wrote:
> > > > >
> > > > > I just installed ARIA on Centos 7 and I get the same error:
> > > > >
> > > > > Storing service template my-service-template...
> > > > >
> > > > > *AttributeError*: 'NoneType' object has no attribute
> > '_get_properties'
> > > > >
> > > > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > > > consumption/consumer.py",
> > > > > line 70, in 

Re: ARIA-354 Verified

2017-11-27 Thread Miguel Angel Jimenez Achinte
I'm sorry if that was confusing. I checked out the 0.1.1 tag because the
working blueprint is there.
To install ARIA, I used pip.

Just to make sure everything is clear, these are the steps I executed:

sudo pip install virtualenv
virtualenv tosca-environment
source tosca-environment/bin/activate
pip install apache-ariatosca[ssh]
git clone https://github.com/apache/incubator-ariatosca.git
cd incubator-ariatosca
git checkout tags/0.1.1
aria service-templates store examples/hello-world/helloworld.yaml
my-service-template
aria services create my-service -t my-service-template
aria executions start install -s my-service
curl http://localhost:9090



ARIA Hello World


Hello, World!

blueprint_id = my-service-template3
deployment_id = my-service2
node_id = web_app_1





--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 5:53 PM, Tal Liron  wrote:

> I'm confused, Miguel. You checked out the git repository, but then
> installed ARIA from the PyPI (using pip). I would recommend not mixing the
> two methods, because indeed if the git repo is at master's tip, then it
> would not much what was last released to PyPI. You found a workaround here,
> using tags, but I wouldn't recommend this generally.
>
> If you use the git repo, just running "make install" should do what you
> need.
>
> On Mon, Nov 27, 2017 at 7:48 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> > Okay, it's working now.
> > I needed to check out the tag 0.1.1. The complete list of commands is:
> >
> > sudo pip install --upgrade setuptools
> > sudo pip install apache-ariatosca[ssh]
> > ...
> > aria --version
> > v0.1.1
> > ...
> > git clone https://github.com/apache/incubator-ariatosca; cd
> > incubator-ariatosca
> > git checkout tags/0.1.1
> > aria service-templates store examples/hello-world/helloworld.yaml
> > my-service-template
> >
> > Notice that in tag 0.1.1, the blueprint's name is helloworld.yaml,
> without
> > the hyphen.
> >
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 3:28 PM, Vishwanath Jayaraman <
> > vishwana...@hotmail.com> wrote:
> >
> > > Ok, got it.
> > >
> > >
> > > Vish
> > >
> > >
> > > 
> > > From: Tal Liron 
> > > Sent: Monday, November 27, 2017 5:19 PM
> > > To: dev@ariatosca.incubator.apache.org
> > > Subject: Re: ARIA-354 Verified
> > >
> > > Vish, I'm pretty sure the version suffix is not required, because 0.1.1
> > is
> > > the highest version.
> > >
> > > On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
> > > vishwana...@hotmail.com> wrote:
> > >
> > > >
> > > > You need to execute
> > > >
> > > > pip install apache-ariatosca[ssh]==0.1.1
> > > >
> > > > Sent from my iPhone
> > > >
> > > > On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> > > > mig...@rigiresearch.com> wrote:
> > > >
> > > > I executed: pip install apache-ariatosca[ssh]
> > > > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > > > apache-ariatosca" instead?
> > > >
> > > >
> > > > --
> > > > Miguel Jimenez, PhD student
> > > > Department of Computer Science
> > > > University of Victoria
> > > > Engineering/Computer Science Building (ECS), Room 412
> > > > Victoria, BC
> > > > V8W 3p6 Canada
> > > >
> > > > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  tal@
> > > > cloudify.co>> wrote:
> > > >
> > > > Miguel, how did you install ARIA?
> > > >
> > > > On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > > > mig...@rigiresearch.com> wrote:
> > > >
> > > > I just installed ARIA on Centos 7 and I get the same error:
> > > >
> > > > Storing service template my-service-template...
> > > >
> > > > *AttributeError*: 'NoneType' object has no attribute
> '_get_properties'
> > > >
> > > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > > consumption/consumer.py",
> > > > line 70, in consume
> > > >
> > > >consumer.consume()
> > > >
> > > >  File "
> > > > /usr/lib/python2.7/site-packages/aria/parser/
> > consumption/validation.py",
> > > > line 30, in consume
> > > >
> > > >self.context.presentation.presenter._validate(self.context)
> > > >
> > > >  File "
> > > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > > simple_v1_0/presenter.py",
> > > > line 65, in _validate
> > > >
> > > >self.service_template._validate(context)
> > > >
> > > >  File "
> > > > /usr/lib/python2.7/site-packages/aria/parser/
> > > > presentation/presentation.py",
> > > > line 193, in _validate
> > > >
> > > >validate_known_fields(context, self)
> > > 

Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
I'm confused, Miguel. You checked out the git repository, but then
installed ARIA from the PyPI (using pip). I would recommend not mixing the
two methods, because indeed if the git repo is at master's tip, then it
would not much what was last released to PyPI. You found a workaround here,
using tags, but I wouldn't recommend this generally.

If you use the git repo, just running "make install" should do what you
need.

On Mon, Nov 27, 2017 at 7:48 PM, Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

> Okay, it's working now.
> I needed to check out the tag 0.1.1. The complete list of commands is:
>
> sudo pip install --upgrade setuptools
> sudo pip install apache-ariatosca[ssh]
> ...
> aria --version
> v0.1.1
> ...
> git clone https://github.com/apache/incubator-ariatosca; cd
> incubator-ariatosca
> git checkout tags/0.1.1
> aria service-templates store examples/hello-world/helloworld.yaml
> my-service-template
>
> Notice that in tag 0.1.1, the blueprint's name is helloworld.yaml, without
> the hyphen.
>
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 3:28 PM, Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
>
> > Ok, got it.
> >
> >
> > Vish
> >
> >
> > 
> > From: Tal Liron 
> > Sent: Monday, November 27, 2017 5:19 PM
> > To: dev@ariatosca.incubator.apache.org
> > Subject: Re: ARIA-354 Verified
> >
> > Vish, I'm pretty sure the version suffix is not required, because 0.1.1
> is
> > the highest version.
> >
> > On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
> > vishwana...@hotmail.com> wrote:
> >
> > >
> > > You need to execute
> > >
> > > pip install apache-ariatosca[ssh]==0.1.1
> > >
> > > Sent from my iPhone
> > >
> > > On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > > I executed: pip install apache-ariatosca[ssh]
> > > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > > apache-ariatosca" instead?
> > >
> > >
> > > --
> > > Miguel Jimenez, PhD student
> > > Department of Computer Science
> > > University of Victoria
> > > Engineering/Computer Science Building (ECS), Room 412
> > > Victoria, BC
> > > V8W 3p6 Canada
> > >
> > > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  > > cloudify.co>> wrote:
> > >
> > > Miguel, how did you install ARIA?
> > >
> > > On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > > I just installed ARIA on Centos 7 and I get the same error:
> > >
> > > Storing service template my-service-template...
> > >
> > > *AttributeError*: 'NoneType' object has no attribute '_get_properties'
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > consumption/consumer.py",
> > > line 70, in consume
> > >
> > >consumer.consume()
> > >
> > >  File "
> > > /usr/lib/python2.7/site-packages/aria/parser/
> consumption/validation.py",
> > > line 30, in consume
> > >
> > >self.context.presentation.presenter._validate(self.context)
> > >
> > >  File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/presenter.py",
> > > line 65, in _validate
> > >
> > >self.service_template._validate(context)
> > >
> > >  File "
> > > /usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/presentation.py",
> > > line 193, in _validate
> > >
> > >validate_known_fields(context, self)
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/utils.py",
> > > line 110, in validate_known_fields
> > >
> > >field.validate(presentation, context)
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 409, in validate
> > >
> > >self.default_validate(presentation, context)
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 524, in default_validate
> > >
> > >self.validate_value(value, context)
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 540, in validate_value
> > >
> > >inner_value._validate(context)
> > >
> > >  File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/types.py",
> > > line 654, in _validate
> > >
> > >self._get_capabilities(context)
> > >
> > >  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> > > 84,
> > > in __call__
> > >
> > >return_value = self.func(*args, **kwargs)
> > >
> > >  File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/types.py",
> > > line 639, in _get_capabilities
> > >
> > >return FrozenDict(get_inherited_capability_definitions(context,
> > > self))
> > 

Re: ARIA-354 Verified

2017-11-27 Thread Miguel Angel Jimenez Achinte
Okay, it's working now.
I needed to check out the tag 0.1.1. The complete list of commands is:

sudo pip install --upgrade setuptools
sudo pip install apache-ariatosca[ssh]
...
aria --version
v0.1.1
...
git clone https://github.com/apache/incubator-ariatosca; cd
incubator-ariatosca
git checkout tags/0.1.1
aria service-templates store examples/hello-world/helloworld.yaml
my-service-template

Notice that in tag 0.1.1, the blueprint's name is helloworld.yaml, without
the hyphen.


--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 3:28 PM, Vishwanath Jayaraman <
vishwana...@hotmail.com> wrote:

> Ok, got it.
>
>
> Vish
>
>
> 
> From: Tal Liron 
> Sent: Monday, November 27, 2017 5:19 PM
> To: dev@ariatosca.incubator.apache.org
> Subject: Re: ARIA-354 Verified
>
> Vish, I'm pretty sure the version suffix is not required, because 0.1.1 is
> the highest version.
>
> On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
>
> >
> > You need to execute
> >
> > pip install apache-ariatosca[ssh]==0.1.1
> >
> > Sent from my iPhone
> >
> > On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> > I executed: pip install apache-ariatosca[ssh]
> > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > apache-ariatosca" instead?
> >
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  > cloudify.co>> wrote:
> >
> > Miguel, how did you install ARIA?
> >
> > On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> > I just installed ARIA on Centos 7 and I get the same error:
> >
> > Storing service template my-service-template...
> >
> > *AttributeError*: 'NoneType' object has no attribute '_get_properties'
> >
> >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > consumption/consumer.py",
> > line 70, in consume
> >
> >consumer.consume()
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
> > line 30, in consume
> >
> >self.context.presentation.presenter._validate(self.context)
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > simple_v1_0/presenter.py",
> > line 65, in _validate
> >
> >self.service_template._validate(context)
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria/parser/
> > presentation/presentation.py",
> > line 193, in _validate
> >
> >validate_known_fields(context, self)
> >
> >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > presentation/utils.py",
> > line 110, in validate_known_fields
> >
> >field.validate(presentation, context)
> >
> >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > presentation/fields.py",
> > line 409, in validate
> >
> >self.default_validate(presentation, context)
> >
> >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > presentation/fields.py",
> > line 524, in default_validate
> >
> >self.validate_value(value, context)
> >
> >  File "/usr/lib/python2.7/site-packages/aria/parser/
> > presentation/fields.py",
> > line 540, in validate_value
> >
> >inner_value._validate(context)
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > simple_v1_0/types.py",
> > line 654, in _validate
> >
> >self._get_capabilities(context)
> >
> >  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> > 84,
> > in __call__
> >
> >return_value = self.func(*args, **kwargs)
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > simple_v1_0/types.py",
> > line 639, in _get_capabilities
> >
> >return FrozenDict(get_inherited_capability_definitions(context,
> > self))
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > simple_v1_0/modeling/capabilities.py",
> > line 90, in get_inherited_capability_definitions
> >
> >merge_capability_definition_from_type(context, presentation,
> > capability_definition)
> >
> >  File "
> > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > simple_v1_0/modeling/capabilities.py",
> > line 170, in merge_capability_definition_from_type
> >
> >type_property_defintions = the_type._get_properties(context)
> >
> > *Validation issues:*
> >
> >  0: 'NoneType' object has no attribute '_get_properties'
> >
> > *AttributeError*: 'NoneType' object has no attribute
> > '_get_properties'
> >
> >  4: unknown parent type "tosca:Root" in "WebServer"
> >
> >
> > @"/home/centos/incubator-ariatosca/examples/hello-
> > 

Re: simple validation error

2017-11-27 Thread DeWayne Filppi
thx

On Nov 27, 2017 3:43 PM, "Tal Liron"  wrote:

It is a bug. I created this issue:
https://issues.apache.org/jira/browse/ARIA-411

For now, the workaround is to add a "primary" key under "implementation".

Also note that you must supply the "type" field for the interface
definition. So:

  T1:
derived_from: tosca.nodes.Root
interfaces:
  Standard:
type: tosca.interfaces.node.lifecycle.Standard
create:
  implementation:
primary: i1.sh

On Mon, Nov 27, 2017 at 5:28 PM, DeWayne Filppi  wrote:

> This should validate, no?
>
> tosca_definitions_version: tosca_simple_yaml_1_0
>
> imports:
>
>   - aria-1.0
>
>
> node_types:
>
>   T1:
> derived_from: tosca.nodes.Root
> interfaces:
>   Standard:
> create:
>   implementation: i1.sh
>
>   T2:
> derived_from: T1
> interfaces:
>   Standard:
> create:
>   implementation: i1.sh
>
>
> The content of 'i1.sh' doesn't matter.  The error is (Aria 0.1.1):
>
> AttributeError: 'LocatableString' object has no attribute 'iteritems'
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/consumption/consumer.py",
> line 70, in consume
> consumer.consume()
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/consumption/validation.py",
> line 30, in consume
> self.context.presentation.presenter._validate(self.context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/presenter.py",
> line 65, in _validate
> self.service_template._validate(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/
> presentation.py",
> line 193, in _validate
> validate_known_fields(context, self)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/utils.py",
> line 110, in validate_known_fields
> field.validate(presentation, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 409, in validate
> self.default_validate(presentation, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 524, in default_validate
> self.validate_value(value, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 540, in validate_value
> inner_value._validate(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/types.py",
> line 655, in _validate
> self._get_interfaces(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/utils/caching.py",
> line 84, in __call__
> return_value = self.func(*args, **kwargs)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/types.py",
> line 643, in _get_interfaces
> return FrozenDict(get_inherited_interface_definitions(context, self,
> 'node type'))
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 127, in get_inherited_interface_definitions
> for_presentation=for_presentation)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 435, in merge_interface_definitions
> 'definition')
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 425, in merge_interface_definition
> presentation, type_name)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 392, in merge_raw_operation_definitions
> presentation, type_name)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 364, in merge_raw_operation_definition
> deepcopy_with_locators(our_operation._raw['implementation']))
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> utils/collections.py",
> line 232, in merge
> for key, value_b in dict_b.iteritems():
> Validation issues:
>   0: 'LocatableString' object has no attribute 'iteritems'
>  AttributeError: 'LocatableString' object has no attribute 'iteritems'
>


Re: simple validation error

2017-11-27 Thread Tal Liron
It is a bug. I created this issue:
https://issues.apache.org/jira/browse/ARIA-411

For now, the workaround is to add a "primary" key under "implementation".

Also note that you must supply the "type" field for the interface
definition. So:

  T1:
derived_from: tosca.nodes.Root
interfaces:
  Standard:
type: tosca.interfaces.node.lifecycle.Standard
create:
  implementation:
primary: i1.sh

On Mon, Nov 27, 2017 at 5:28 PM, DeWayne Filppi  wrote:

> This should validate, no?
>
> tosca_definitions_version: tosca_simple_yaml_1_0
>
> imports:
>
>   - aria-1.0
>
>
> node_types:
>
>   T1:
> derived_from: tosca.nodes.Root
> interfaces:
>   Standard:
> create:
>   implementation: i1.sh
>
>   T2:
> derived_from: T1
> interfaces:
>   Standard:
> create:
>   implementation: i1.sh
>
>
> The content of 'i1.sh' doesn't matter.  The error is (Aria 0.1.1):
>
> AttributeError: 'LocatableString' object has no attribute 'iteritems'
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/consumption/consumer.py",
> line 70, in consume
> consumer.consume()
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/consumption/validation.py",
> line 30, in consume
> self.context.presentation.presenter._validate(self.context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/presenter.py",
> line 65, in _validate
> self.service_template._validate(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/
> presentation.py",
> line 193, in _validate
> validate_known_fields(context, self)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/utils.py",
> line 110, in validate_known_fields
> field.validate(presentation, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 409, in validate
> self.default_validate(presentation, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 524, in default_validate
> self.validate_value(value, context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> parser/presentation/fields.py",
> line 540, in validate_value
> inner_value._validate(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/types.py",
> line 655, in _validate
> self._get_interfaces(context)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/utils/caching.py",
> line 84, in __call__
> return_value = self.func(*args, **kwargs)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/types.py",
> line 643, in _get_interfaces
> return FrozenDict(get_inherited_interface_definitions(context, self,
> 'node type'))
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 127, in get_inherited_interface_definitions
> for_presentation=for_presentation)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 435, in merge_interface_definitions
> 'definition')
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 425, in merge_interface_definition
> presentation, type_name)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 392, in merge_raw_operation_definitions
> presentation, type_name)
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria_
> extension_tosca/simple_v1_0/modeling/interfaces.py",
> line 364, in merge_raw_operation_definition
> deepcopy_with_locators(our_operation._raw['implementation']))
>   File
> "/home/vagrant/venv/lib/python2.7/site-packages/aria/
> utils/collections.py",
> line 232, in merge
> for key, value_b in dict_b.iteritems():
> Validation issues:
>   0: 'LocatableString' object has no attribute 'iteritems'
>  AttributeError: 'LocatableString' object has no attribute 'iteritems'
>


Re: ARIA-354 Verified

2017-11-27 Thread Vishwanath Jayaraman
Ok, got it.


Vish



From: Tal Liron 
Sent: Monday, November 27, 2017 5:19 PM
To: dev@ariatosca.incubator.apache.org
Subject: Re: ARIA-354 Verified

Vish, I'm pretty sure the version suffix is not required, because 0.1.1 is
the highest version.

On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
vishwana...@hotmail.com> wrote:

>
> You need to execute
>
> pip install apache-ariatosca[ssh]==0.1.1
>
> Sent from my iPhone
>
> On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> I executed: pip install apache-ariatosca[ssh]
> Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> apache-ariatosca" instead?
>
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  cloudify.co>> wrote:
>
> Miguel, how did you install ARIA?
>
> On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> I just installed ARIA on Centos 7 and I get the same error:
>
> Storing service template my-service-template...
>
> *AttributeError*: 'NoneType' object has no attribute '_get_properties'
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> consumption/consumer.py",
> line 70, in consume
>
>consumer.consume()
>
>  File "
> /usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
> line 30, in consume
>
>self.context.presentation.presenter._validate(self.context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/presenter.py",
> line 65, in _validate
>
>self.service_template._validate(context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria/parser/
> presentation/presentation.py",
> line 193, in _validate
>
>validate_known_fields(context, self)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/utils.py",
> line 110, in validate_known_fields
>
>field.validate(presentation, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 409, in validate
>
>self.default_validate(presentation, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 524, in default_validate
>
>self.validate_value(value, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 540, in validate_value
>
>inner_value._validate(context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 654, in _validate
>
>self._get_capabilities(context)
>
>  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> 84,
> in __call__
>
>return_value = self.func(*args, **kwargs)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 639, in _get_capabilities
>
>return FrozenDict(get_inherited_capability_definitions(context,
> self))
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 90, in get_inherited_capability_definitions
>
>merge_capability_definition_from_type(context, presentation,
> capability_definition)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 170, in merge_capability_definition_from_type
>
>type_property_defintions = the_type._get_properties(context)
>
> *Validation issues:*
>
>  0: 'NoneType' object has no attribute '_get_properties'
>
> *AttributeError*: 'NoneType' object has no attribute
> '_get_properties'
>
>  4: unknown parent type "tosca:Root" in "WebServer"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":6:19
>
>  4: "type" refers to an unknown capability type in "host":
> 'tosca:Container'
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":9:15
>
>  4: unknown parent type "tosca:WebApplication" in "WebApp"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":12:19
>
> Failed to parse service template
>
> Also, the gettingstarted.md file in the website repository is using the
> wrong name for the hello-world blueprint.
> It's missing the hyphen. I'll add the issue tonight.
>
> I clone the master branch to try the hello-world example.
> To install ARIA, I executed: pip install apache-ariatosca[ssh]
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron  cloudify.co>> wrote:
>
> Tom, the specific problems we had were not with installation, 

simple validation error

2017-11-27 Thread DeWayne Filppi
This should validate, no?

tosca_definitions_version: tosca_simple_yaml_1_0

imports:

  - aria-1.0


node_types:

  T1:
derived_from: tosca.nodes.Root
interfaces:
  Standard:
create:
  implementation: i1.sh

  T2:
derived_from: T1
interfaces:
  Standard:
create:
  implementation: i1.sh


The content of 'i1.sh' doesn't matter.  The error is (Aria 0.1.1):

AttributeError: 'LocatableString' object has no attribute 'iteritems'
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/consumption/consumer.py",
line 70, in consume
consumer.consume()
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
line 30, in consume
self.context.presentation.presenter._validate(self.context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/presenter.py",
line 65, in _validate
self.service_template._validate(context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/presentation.py",
line 193, in _validate
validate_known_fields(context, self)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/utils.py",
line 110, in validate_known_fields
field.validate(presentation, context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 409, in validate
self.default_validate(presentation, context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 524, in default_validate
self.validate_value(value, context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 540, in validate_value
inner_value._validate(context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/types.py",
line 655, in _validate
self._get_interfaces(context)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/utils/caching.py",
line 84, in __call__
return_value = self.func(*args, **kwargs)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/types.py",
line 643, in _get_interfaces
return FrozenDict(get_inherited_interface_definitions(context, self,
'node type'))
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/interfaces.py",
line 127, in get_inherited_interface_definitions
for_presentation=for_presentation)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/interfaces.py",
line 435, in merge_interface_definitions
'definition')
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/interfaces.py",
line 425, in merge_interface_definition
presentation, type_name)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/interfaces.py",
line 392, in merge_raw_operation_definitions
presentation, type_name)
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/interfaces.py",
line 364, in merge_raw_operation_definition
deepcopy_with_locators(our_operation._raw['implementation']))
  File
"/home/vagrant/venv/lib/python2.7/site-packages/aria/utils/collections.py",
line 232, in merge
for key, value_b in dict_b.iteritems():
Validation issues:
  0: 'LocatableString' object has no attribute 'iteritems'
 AttributeError: 'LocatableString' object has no attribute 'iteritems'


Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
Vish, I'm pretty sure the version suffix is not required, because 0.1.1 is
the highest version.

On Mon, Nov 27, 2017 at 5:08 PM, Vishwanath Jayaraman <
vishwana...@hotmail.com> wrote:

>
> You need to execute
>
> pip install apache-ariatosca[ssh]==0.1.1
>
> Sent from my iPhone
>
> On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> I executed: pip install apache-ariatosca[ssh]
> Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> apache-ariatosca" instead?
>
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  cloudify.co>> wrote:
>
> Miguel, how did you install ARIA?
>
> On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> I just installed ARIA on Centos 7 and I get the same error:
>
> Storing service template my-service-template...
>
> *AttributeError*: 'NoneType' object has no attribute '_get_properties'
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> consumption/consumer.py",
> line 70, in consume
>
>consumer.consume()
>
>  File "
> /usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
> line 30, in consume
>
>self.context.presentation.presenter._validate(self.context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/presenter.py",
> line 65, in _validate
>
>self.service_template._validate(context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria/parser/
> presentation/presentation.py",
> line 193, in _validate
>
>validate_known_fields(context, self)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/utils.py",
> line 110, in validate_known_fields
>
>field.validate(presentation, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 409, in validate
>
>self.default_validate(presentation, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 524, in default_validate
>
>self.validate_value(value, context)
>
>  File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 540, in validate_value
>
>inner_value._validate(context)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 654, in _validate
>
>self._get_capabilities(context)
>
>  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> 84,
> in __call__
>
>return_value = self.func(*args, **kwargs)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 639, in _get_capabilities
>
>return FrozenDict(get_inherited_capability_definitions(context,
> self))
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 90, in get_inherited_capability_definitions
>
>merge_capability_definition_from_type(context, presentation,
> capability_definition)
>
>  File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 170, in merge_capability_definition_from_type
>
>type_property_defintions = the_type._get_properties(context)
>
> *Validation issues:*
>
>  0: 'NoneType' object has no attribute '_get_properties'
>
> *AttributeError*: 'NoneType' object has no attribute
> '_get_properties'
>
>  4: unknown parent type "tosca:Root" in "WebServer"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":6:19
>
>  4: "type" refers to an unknown capability type in "host":
> 'tosca:Container'
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":9:15
>
>  4: unknown parent type "tosca:WebApplication" in "WebApp"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":12:19
>
> Failed to parse service template
>
> Also, the gettingstarted.md file in the website repository is using the
> wrong name for the hello-world blueprint.
> It's missing the hyphen. I'll add the issue tonight.
>
> I clone the master branch to try the hello-world example.
> To install ARIA, I executed: pip install apache-ariatosca[ssh]
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron  cloudify.co>> wrote:
>
> Tom, the specific problems we had were not with installation, but
> rather
> in
> running workflows. Have you tried to install the Hello World example?
>
> On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau  >
> 

Re: ARIA-354 Verified

2017-11-27 Thread Vishwanath Jayaraman

You need to execute

pip install apache-ariatosca[ssh]==0.1.1

Sent from my iPhone

On Nov 27, 2017, at 4:49 PM, Miguel Angel Jimenez Achinte 
> wrote:

I executed: pip install apache-ariatosca[ssh]
Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
apache-ariatosca" instead?


--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron 
> wrote:

Miguel, how did you install ARIA?

On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

I just installed ARIA on Centos 7 and I get the same error:

Storing service template my-service-template...

*AttributeError*: 'NoneType' object has no attribute '_get_properties'

 File "/usr/lib/python2.7/site-packages/aria/parser/
consumption/consumer.py",
line 70, in consume

   consumer.consume()

 File "
/usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
line 30, in consume

   self.context.presentation.presenter._validate(self.context)

 File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/
simple_v1_0/presenter.py",
line 65, in _validate

   self.service_template._validate(context)

 File "
/usr/lib/python2.7/site-packages/aria/parser/
presentation/presentation.py",
line 193, in _validate

   validate_known_fields(context, self)

 File "/usr/lib/python2.7/site-packages/aria/parser/
presentation/utils.py",
line 110, in validate_known_fields

   field.validate(presentation, context)

 File "/usr/lib/python2.7/site-packages/aria/parser/
presentation/fields.py",
line 409, in validate

   self.default_validate(presentation, context)

 File "/usr/lib/python2.7/site-packages/aria/parser/
presentation/fields.py",
line 524, in default_validate

   self.validate_value(value, context)

 File "/usr/lib/python2.7/site-packages/aria/parser/
presentation/fields.py",
line 540, in validate_value

   inner_value._validate(context)

 File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/
simple_v1_0/types.py",
line 654, in _validate

   self._get_capabilities(context)

 File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
84,
in __call__

   return_value = self.func(*args, **kwargs)

 File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/
simple_v1_0/types.py",
line 639, in _get_capabilities

   return FrozenDict(get_inherited_capability_definitions(context,
self))

 File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/
simple_v1_0/modeling/capabilities.py",
line 90, in get_inherited_capability_definitions

   merge_capability_definition_from_type(context, presentation,
capability_definition)

 File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/
simple_v1_0/modeling/capabilities.py",
line 170, in merge_capability_definition_from_type

   type_property_defintions = the_type._get_properties(context)

*Validation issues:*

 0: 'NoneType' object has no attribute '_get_properties'

*AttributeError*: 'NoneType' object has no attribute
'_get_properties'

 4: unknown parent type "tosca:Root" in "WebServer"


@"/home/centos/incubator-ariatosca/examples/hello-
world/hello-world.yaml":6:19

 4: "type" refers to an unknown capability type in "host":
'tosca:Container'


@"/home/centos/incubator-ariatosca/examples/hello-
world/hello-world.yaml":9:15

 4: unknown parent type "tosca:WebApplication" in "WebApp"


@"/home/centos/incubator-ariatosca/examples/hello-
world/hello-world.yaml":12:19

Failed to parse service template

Also, the gettingstarted.md file in the website repository is using the
wrong name for the hello-world blueprint.
It's missing the hyphen. I'll add the issue tonight.

I clone the master branch to try the hello-world example.
To install ARIA, I executed: pip install apache-ariatosca[ssh]

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron 
> wrote:

Tom, the specific problems we had were not with installation, but
rather
in
running workflows. Have you tried to install the Hello World example?

On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau 
>
wrote:


   I took an action during the grooming to verify the
installation
of
the latest PIP artifacts.
I was able to install successfully on Ubuntu 16.04 LTS just now.

   —Tom








Re: ARIA-354 Verified

2017-11-27 Thread Miguel Angel Jimenez Achinte
Tom, these are the commands I executed to get "aria --version" working:

sudo pip install --upgrade setuptools
sudo pip install apache-ariatosca[ssh]
...
aria --version
v0.1.1
...
git clone https://github.com/apache/incubator-ariatosca; cd
incubator-ariatosca
aria service-templates store examples/hello-world/hello-world.yaml
my-service-template

--> error


--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 2:54 PM, Tal Liron  wrote:

> Tom, the errors he is getting are not related to permissions. He has gone
> beyond the install phase and is having errors when trying to parse a TOSCA
> file.
>
> On Mon, Nov 27, 2017 at 4:53 PM, Thomas Nadeau 
> wrote:
>
> > You need to do this as:
> >
> > % sudo -H pip install …
> >
> > Its a permissions problem.  I literally started to modify the
> Installation
> > Instructions earlier when I was reminded of this myself.  Can’t get a
> good
> > answer as to how to fix it either.  Experienced it on CenOS, Fedora and
> > Ubuntu.
> >
> > —Tom
> >
> >
> > > On Nov 27, 2017, at 5:49 PM, Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> > >
> > > I executed: pip install apache-ariatosca[ssh]
> > > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > > apache-ariatosca" instead?
> > >
> > >
> > > --
> > > Miguel Jimenez, PhD student
> > > Department of Computer Science
> > > University of Victoria
> > > Engineering/Computer Science Building (ECS), Room 412
> > > Victoria, BC
> > > V8W 3p6 Canada
> > >
> > > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  wrote:
> > >
> > >> Miguel, how did you install ARIA?
> > >>
> > >> On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > >> mig...@rigiresearch.com> wrote:
> > >>
> > >>> I just installed ARIA on Centos 7 and I get the same error:
> > >>>
> > >>> Storing service template my-service-template...
> > >>>
> > >>> *AttributeError*: 'NoneType' object has no attribute
> '_get_properties'
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> > >>> consumption/consumer.py",
> > >>> line 70, in consume
> > >>>
> > >>>consumer.consume()
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria/parser/
> > consumption/validation.py",
> > >>> line 30, in consume
> > >>>
> > >>>self.context.presentation.presenter._validate(self.context)
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > >>> simple_v1_0/presenter.py",
> > >>> line 65, in _validate
> > >>>
> > >>>self.service_template._validate(context)
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria/parser/
> > >>> presentation/presentation.py",
> > >>> line 193, in _validate
> > >>>
> > >>>validate_known_fields(context, self)
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> > >>> presentation/utils.py",
> > >>> line 110, in validate_known_fields
> > >>>
> > >>>field.validate(presentation, context)
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> > >>> presentation/fields.py",
> > >>> line 409, in validate
> > >>>
> > >>>self.default_validate(presentation, context)
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> > >>> presentation/fields.py",
> > >>> line 524, in default_validate
> > >>>
> > >>>self.validate_value(value, context)
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> > >>> presentation/fields.py",
> > >>> line 540, in validate_value
> > >>>
> > >>>inner_value._validate(context)
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > >>> simple_v1_0/types.py",
> > >>> line 654, in _validate
> > >>>
> > >>>self._get_capabilities(context)
> > >>>
> > >>>  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> > >> 84,
> > >>> in __call__
> > >>>
> > >>>return_value = self.func(*args, **kwargs)
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > >>> simple_v1_0/types.py",
> > >>> line 639, in _get_capabilities
> > >>>
> > >>>return FrozenDict(get_inherited_capability_definitions(context,
> > >> self))
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > >>> simple_v1_0/modeling/capabilities.py",
> > >>> line 90, in get_inherited_capability_definitions
> > >>>
> > >>>merge_capability_definition_from_type(context, presentation,
> > >>> capability_definition)
> > >>>
> > >>>  File "
> > >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > >>> simple_v1_0/modeling/capabilities.py",
> > >>> line 170, in merge_capability_definition_from_type
> > >>>
> > >>>type_property_defintions = the_type._get_properties(context)
> > >>>
> > >>> *Validation issues:*
> > >>>
> > >>>  0: 'NoneType' 

Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
Tom, the errors he is getting are not related to permissions. He has gone
beyond the install phase and is having errors when trying to parse a TOSCA
file.

On Mon, Nov 27, 2017 at 4:53 PM, Thomas Nadeau 
wrote:

> You need to do this as:
>
> % sudo -H pip install …
>
> Its a permissions problem.  I literally started to modify the Installation
> Instructions earlier when I was reminded of this myself.  Can’t get a good
> answer as to how to fix it either.  Experienced it on CenOS, Fedora and
> Ubuntu.
>
> —Tom
>
>
> > On Nov 27, 2017, at 5:49 PM, Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
> >
> > I executed: pip install apache-ariatosca[ssh]
> > Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> > apache-ariatosca" instead?
> >
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  wrote:
> >
> >> Miguel, how did you install ARIA?
> >>
> >> On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> >> mig...@rigiresearch.com> wrote:
> >>
> >>> I just installed ARIA on Centos 7 and I get the same error:
> >>>
> >>> Storing service template my-service-template...
> >>>
> >>> *AttributeError*: 'NoneType' object has no attribute '_get_properties'
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> >>> consumption/consumer.py",
> >>> line 70, in consume
> >>>
> >>>consumer.consume()
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria/parser/
> consumption/validation.py",
> >>> line 30, in consume
> >>>
> >>>self.context.presentation.presenter._validate(self.context)
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> >>> simple_v1_0/presenter.py",
> >>> line 65, in _validate
> >>>
> >>>self.service_template._validate(context)
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria/parser/
> >>> presentation/presentation.py",
> >>> line 193, in _validate
> >>>
> >>>validate_known_fields(context, self)
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> >>> presentation/utils.py",
> >>> line 110, in validate_known_fields
> >>>
> >>>field.validate(presentation, context)
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> >>> presentation/fields.py",
> >>> line 409, in validate
> >>>
> >>>self.default_validate(presentation, context)
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> >>> presentation/fields.py",
> >>> line 524, in default_validate
> >>>
> >>>self.validate_value(value, context)
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/parser/
> >>> presentation/fields.py",
> >>> line 540, in validate_value
> >>>
> >>>inner_value._validate(context)
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> >>> simple_v1_0/types.py",
> >>> line 654, in _validate
> >>>
> >>>self._get_capabilities(context)
> >>>
> >>>  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> >> 84,
> >>> in __call__
> >>>
> >>>return_value = self.func(*args, **kwargs)
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> >>> simple_v1_0/types.py",
> >>> line 639, in _get_capabilities
> >>>
> >>>return FrozenDict(get_inherited_capability_definitions(context,
> >> self))
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> >>> simple_v1_0/modeling/capabilities.py",
> >>> line 90, in get_inherited_capability_definitions
> >>>
> >>>merge_capability_definition_from_type(context, presentation,
> >>> capability_definition)
> >>>
> >>>  File "
> >>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> >>> simple_v1_0/modeling/capabilities.py",
> >>> line 170, in merge_capability_definition_from_type
> >>>
> >>>type_property_defintions = the_type._get_properties(context)
> >>>
> >>> *Validation issues:*
> >>>
> >>>  0: 'NoneType' object has no attribute '_get_properties'
> >>>
> >>> *AttributeError*: 'NoneType' object has no attribute
> >> '_get_properties'
> >>>
> >>>  4: unknown parent type "tosca:Root" in "WebServer"
> >>>
> >>>
> >>> @"/home/centos/incubator-ariatosca/examples/hello-
> >>> world/hello-world.yaml":6:19
> >>>
> >>>  4: "type" refers to an unknown capability type in "host":
> >>> 'tosca:Container'
> >>>
> >>>
> >>> @"/home/centos/incubator-ariatosca/examples/hello-
> >>> world/hello-world.yaml":9:15
> >>>
> >>>  4: unknown parent type "tosca:WebApplication" in "WebApp"
> >>>
> >>>
> >>> @"/home/centos/incubator-ariatosca/examples/hello-
> >>> world/hello-world.yaml":12:19
> >>>
> >>> Failed to parse service template
> >>>
> >>> Also, the gettingstarted.md file in the website repository is using
> the
> >>> wrong name for the hello-world blueprint.
> >>> It's missing the 

Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
The error you are seeing now is unrelated to the error that required the
"--no-binary" workaround.

It seems somehow your install is not seeing the extensions, and thus is not
finding the TOSCA parser.

Are you using a virtualenv? Or are you using "sudo -H" to install to your
operating system?

On Mon, Nov 27, 2017 at 4:49 PM, Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

> I executed: pip install apache-ariatosca[ssh]
> Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> apache-ariatosca" instead?
>
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  wrote:
>
> > Miguel, how did you install ARIA?
> >
> > On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> > > I just installed ARIA on Centos 7 and I get the same error:
> > >
> > > Storing service template my-service-template...
> > >
> > > *AttributeError*: 'NoneType' object has no attribute '_get_properties'
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/parser/
> > > consumption/consumer.py",
> > > line 70, in consume
> > >
> > > consumer.consume()
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria/parser/
> consumption/validation.py",
> > > line 30, in consume
> > >
> > > self.context.presentation.presenter._validate(self.context)
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/presenter.py",
> > > line 65, in _validate
> > >
> > > self.service_template._validate(context)
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/presentation.py",
> > > line 193, in _validate
> > >
> > > validate_known_fields(context, self)
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/utils.py",
> > > line 110, in validate_known_fields
> > >
> > > field.validate(presentation, context)
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 409, in validate
> > >
> > > self.default_validate(presentation, context)
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 524, in default_validate
> > >
> > > self.validate_value(value, context)
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/parser/
> > > presentation/fields.py",
> > > line 540, in validate_value
> > >
> > > inner_value._validate(context)
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/types.py",
> > > line 654, in _validate
> > >
> > > self._get_capabilities(context)
> > >
> > >   File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
> > 84,
> > > in __call__
> > >
> > > return_value = self.func(*args, **kwargs)
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/types.py",
> > > line 639, in _get_capabilities
> > >
> > > return FrozenDict(get_inherited_capability_definitions(context,
> > self))
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/modeling/capabilities.py",
> > > line 90, in get_inherited_capability_definitions
> > >
> > > merge_capability_definition_from_type(context, presentation,
> > > capability_definition)
> > >
> > >   File "
> > > /usr/lib/python2.7/site-packages/aria_extension_tosca/
> > > simple_v1_0/modeling/capabilities.py",
> > > line 170, in merge_capability_definition_from_type
> > >
> > > type_property_defintions = the_type._get_properties(context)
> > >
> > > *Validation issues:*
> > >
> > >   0: 'NoneType' object has no attribute '_get_properties'
> > >
> > >  *AttributeError*: 'NoneType' object has no attribute
> > '_get_properties'
> > >
> > >   4: unknown parent type "tosca:Root" in "WebServer"
> > >
> > >
> > > @"/home/centos/incubator-ariatosca/examples/hello-
> > > world/hello-world.yaml":6:19
> > >
> > >   4: "type" refers to an unknown capability type in "host":
> > > 'tosca:Container'
> > >
> > >
> > > @"/home/centos/incubator-ariatosca/examples/hello-
> > > world/hello-world.yaml":9:15
> > >
> > >   4: unknown parent type "tosca:WebApplication" in "WebApp"
> > >
> > >
> > > @"/home/centos/incubator-ariatosca/examples/hello-
> > > world/hello-world.yaml":12:19
> > >
> > > Failed to parse service template
> > >
> > > Also, the gettingstarted.md file in the website repository is using
> the
> > > wrong name for the hello-world blueprint.
> > > It's missing the hyphen. I'll add the issue tonight.
> > >
> > > I clone the master branch to try the hello-world example.
> > > To install ARIA, I executed: pip install apache-ariatosca[ssh]
> > >
> > > --
> > > Miguel Jimenez, PhD student
> > > Department of Computer 

Re: ARIA-354 Verified

2017-11-27 Thread Thomas Nadeau
You need to do this as:

% sudo -H pip install …

Its a permissions problem.  I literally started to modify the Installation 
Instructions earlier when I was reminded of this myself.  Can’t get a good 
answer as to how to fix it either.  Experienced it on CenOS, Fedora and Ubuntu.

—Tom


> On Nov 27, 2017, at 5:49 PM, Miguel Angel Jimenez Achinte 
>  wrote:
> 
> I executed: pip install apache-ariatosca[ssh]
> Should I use "pip install apache-ariatosca[ssh]==0.1.1 --no-binary
> apache-ariatosca" instead?
> 
> 
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
> 
> On Mon, Nov 27, 2017 at 2:47 PM, Tal Liron  wrote:
> 
>> Miguel, how did you install ARIA?
>> 
>> On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
>> mig...@rigiresearch.com> wrote:
>> 
>>> I just installed ARIA on Centos 7 and I get the same error:
>>> 
>>> Storing service template my-service-template...
>>> 
>>> *AttributeError*: 'NoneType' object has no attribute '_get_properties'
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/parser/
>>> consumption/consumer.py",
>>> line 70, in consume
>>> 
>>>consumer.consume()
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
>>> line 30, in consume
>>> 
>>>self.context.presentation.presenter._validate(self.context)
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
>>> simple_v1_0/presenter.py",
>>> line 65, in _validate
>>> 
>>>self.service_template._validate(context)
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria/parser/
>>> presentation/presentation.py",
>>> line 193, in _validate
>>> 
>>>validate_known_fields(context, self)
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/parser/
>>> presentation/utils.py",
>>> line 110, in validate_known_fields
>>> 
>>>field.validate(presentation, context)
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/parser/
>>> presentation/fields.py",
>>> line 409, in validate
>>> 
>>>self.default_validate(presentation, context)
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/parser/
>>> presentation/fields.py",
>>> line 524, in default_validate
>>> 
>>>self.validate_value(value, context)
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/parser/
>>> presentation/fields.py",
>>> line 540, in validate_value
>>> 
>>>inner_value._validate(context)
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
>>> simple_v1_0/types.py",
>>> line 654, in _validate
>>> 
>>>self._get_capabilities(context)
>>> 
>>>  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line
>> 84,
>>> in __call__
>>> 
>>>return_value = self.func(*args, **kwargs)
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
>>> simple_v1_0/types.py",
>>> line 639, in _get_capabilities
>>> 
>>>return FrozenDict(get_inherited_capability_definitions(context,
>> self))
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
>>> simple_v1_0/modeling/capabilities.py",
>>> line 90, in get_inherited_capability_definitions
>>> 
>>>merge_capability_definition_from_type(context, presentation,
>>> capability_definition)
>>> 
>>>  File "
>>> /usr/lib/python2.7/site-packages/aria_extension_tosca/
>>> simple_v1_0/modeling/capabilities.py",
>>> line 170, in merge_capability_definition_from_type
>>> 
>>>type_property_defintions = the_type._get_properties(context)
>>> 
>>> *Validation issues:*
>>> 
>>>  0: 'NoneType' object has no attribute '_get_properties'
>>> 
>>> *AttributeError*: 'NoneType' object has no attribute
>> '_get_properties'
>>> 
>>>  4: unknown parent type "tosca:Root" in "WebServer"
>>> 
>>> 
>>> @"/home/centos/incubator-ariatosca/examples/hello-
>>> world/hello-world.yaml":6:19
>>> 
>>>  4: "type" refers to an unknown capability type in "host":
>>> 'tosca:Container'
>>> 
>>> 
>>> @"/home/centos/incubator-ariatosca/examples/hello-
>>> world/hello-world.yaml":9:15
>>> 
>>>  4: unknown parent type "tosca:WebApplication" in "WebApp"
>>> 
>>> 
>>> @"/home/centos/incubator-ariatosca/examples/hello-
>>> world/hello-world.yaml":12:19
>>> 
>>> Failed to parse service template
>>> 
>>> Also, the gettingstarted.md file in the website repository is using the
>>> wrong name for the hello-world blueprint.
>>> It's missing the hyphen. I'll add the issue tonight.
>>> 
>>> I clone the master branch to try the hello-world example.
>>> To install ARIA, I executed: pip install apache-ariatosca[ssh]
>>> 
>>> --
>>> Miguel Jimenez, PhD student
>>> Department of Computer Science
>>> University of Victoria
>>> Engineering/Computer Science Building (ECS), Room 412
>>> Victoria, BC
>>> V8W 3p6 Canada
>>> 
>>> On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron  wrote:
>>> 
 Tom, the specific problems we had were 

Re: ARIA-354 Verified

2017-11-27 Thread Thomas Nadeau

OH yes, I need to run the “hell world” example. I’ll do that first 
thing Tuesday...

> On Nov 27, 2017, at 5:24 PM, Tal Liron  wrote:
> 
> Tom, the specific problems we had were not with installation, but rather in
> running workflows. Have you tried to install the Hello World example?
> 
> On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau 
> wrote:
> 
>> 
>>I took an action during the grooming to verify the installation of
>> the latest PIP artifacts.
>> I was able to install successfully on Ubuntu 16.04 LTS just now.
>> 
>>—Tom
>> 
>> 
>> 



Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
Miguel, how did you install ARIA?

On Mon, Nov 27, 2017 at 4:44 PM, Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

> I just installed ARIA on Centos 7 and I get the same error:
>
> Storing service template my-service-template...
>
> *AttributeError*: 'NoneType' object has no attribute '_get_properties'
>
>   File "/usr/lib/python2.7/site-packages/aria/parser/
> consumption/consumer.py",
> line 70, in consume
>
> consumer.consume()
>
>   File "
> /usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
> line 30, in consume
>
> self.context.presentation.presenter._validate(self.context)
>
>   File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/presenter.py",
> line 65, in _validate
>
> self.service_template._validate(context)
>
>   File "
> /usr/lib/python2.7/site-packages/aria/parser/
> presentation/presentation.py",
> line 193, in _validate
>
> validate_known_fields(context, self)
>
>   File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/utils.py",
> line 110, in validate_known_fields
>
> field.validate(presentation, context)
>
>   File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 409, in validate
>
> self.default_validate(presentation, context)
>
>   File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 524, in default_validate
>
> self.validate_value(value, context)
>
>   File "/usr/lib/python2.7/site-packages/aria/parser/
> presentation/fields.py",
> line 540, in validate_value
>
> inner_value._validate(context)
>
>   File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 654, in _validate
>
> self._get_capabilities(context)
>
>   File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line 84,
> in __call__
>
> return_value = self.func(*args, **kwargs)
>
>   File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/types.py",
> line 639, in _get_capabilities
>
> return FrozenDict(get_inherited_capability_definitions(context, self))
>
>   File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 90, in get_inherited_capability_definitions
>
> merge_capability_definition_from_type(context, presentation,
> capability_definition)
>
>   File "
> /usr/lib/python2.7/site-packages/aria_extension_tosca/
> simple_v1_0/modeling/capabilities.py",
> line 170, in merge_capability_definition_from_type
>
> type_property_defintions = the_type._get_properties(context)
>
> *Validation issues:*
>
>   0: 'NoneType' object has no attribute '_get_properties'
>
>  *AttributeError*: 'NoneType' object has no attribute '_get_properties'
>
>   4: unknown parent type "tosca:Root" in "WebServer"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":6:19
>
>   4: "type" refers to an unknown capability type in "host":
> 'tosca:Container'
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":9:15
>
>   4: unknown parent type "tosca:WebApplication" in "WebApp"
>
>
> @"/home/centos/incubator-ariatosca/examples/hello-
> world/hello-world.yaml":12:19
>
> Failed to parse service template
>
> Also, the gettingstarted.md file in the website repository is using the
> wrong name for the hello-world blueprint.
> It's missing the hyphen. I'll add the issue tonight.
>
> I clone the master branch to try the hello-world example.
> To install ARIA, I executed: pip install apache-ariatosca[ssh]
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron  wrote:
>
> > Tom, the specific problems we had were not with installation, but rather
> in
> > running workflows. Have you tried to install the Hello World example?
> >
> > On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau 
> > wrote:
> >
> > >
> > > I took an action during the grooming to verify the installation
> > of
> > > the latest PIP artifacts.
> > > I was able to install successfully on Ubuntu 16.04 LTS just now.
> > >
> > > —Tom
> > >
> > >
> > >
> >
>


Re: ARIA-354 Verified

2017-11-27 Thread Miguel Angel Jimenez Achinte
I just installed ARIA on Centos 7 and I get the same error:

Storing service template my-service-template...

*AttributeError*: 'NoneType' object has no attribute '_get_properties'

  File "/usr/lib/python2.7/site-packages/aria/parser/consumption/consumer.py",
line 70, in consume

consumer.consume()

  File "
/usr/lib/python2.7/site-packages/aria/parser/consumption/validation.py",
line 30, in consume

self.context.presentation.presenter._validate(self.context)

  File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/presenter.py",
line 65, in _validate

self.service_template._validate(context)

  File "
/usr/lib/python2.7/site-packages/aria/parser/presentation/presentation.py",
line 193, in _validate

validate_known_fields(context, self)

  File "/usr/lib/python2.7/site-packages/aria/parser/presentation/utils.py",
line 110, in validate_known_fields

field.validate(presentation, context)

  File "/usr/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 409, in validate

self.default_validate(presentation, context)

  File "/usr/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 524, in default_validate

self.validate_value(value, context)

  File "/usr/lib/python2.7/site-packages/aria/parser/presentation/fields.py",
line 540, in validate_value

inner_value._validate(context)

  File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/types.py",
line 654, in _validate

self._get_capabilities(context)

  File "/usr/lib/python2.7/site-packages/aria/utils/caching.py", line 84,
in __call__

return_value = self.func(*args, **kwargs)

  File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/types.py",
line 639, in _get_capabilities

return FrozenDict(get_inherited_capability_definitions(context, self))

  File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/capabilities.py",
line 90, in get_inherited_capability_definitions

merge_capability_definition_from_type(context, presentation,
capability_definition)

  File "
/usr/lib/python2.7/site-packages/aria_extension_tosca/simple_v1_0/modeling/capabilities.py",
line 170, in merge_capability_definition_from_type

type_property_defintions = the_type._get_properties(context)

*Validation issues:*

  0: 'NoneType' object has no attribute '_get_properties'

 *AttributeError*: 'NoneType' object has no attribute '_get_properties'

  4: unknown parent type "tosca:Root" in "WebServer"


@"/home/centos/incubator-ariatosca/examples/hello-world/hello-world.yaml":6:19

  4: "type" refers to an unknown capability type in "host":
'tosca:Container'


@"/home/centos/incubator-ariatosca/examples/hello-world/hello-world.yaml":9:15

  4: unknown parent type "tosca:WebApplication" in "WebApp"


@"/home/centos/incubator-ariatosca/examples/hello-world/hello-world.yaml":12:19

Failed to parse service template

Also, the gettingstarted.md file in the website repository is using the
wrong name for the hello-world blueprint.
It's missing the hyphen. I'll add the issue tonight.

I clone the master branch to try the hello-world example.
To install ARIA, I executed: pip install apache-ariatosca[ssh]

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 2:24 PM, Tal Liron  wrote:

> Tom, the specific problems we had were not with installation, but rather in
> running workflows. Have you tried to install the Hello World example?
>
> On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau 
> wrote:
>
> >
> > I took an action during the grooming to verify the installation
> of
> > the latest PIP artifacts.
> > I was able to install successfully on Ubuntu 16.04 LTS just now.
> >
> > —Tom
> >
> >
> >
>


Re: ARIA-354 Verified

2017-11-27 Thread Tal Liron
Tom, the specific problems we had were not with installation, but rather in
running workflows. Have you tried to install the Hello World example?

On Mon, Nov 27, 2017 at 2:54 PM, Thomas Nadeau 
wrote:

>
> I took an action during the grooming to verify the installation of
> the latest PIP artifacts.
> I was able to install successfully on Ubuntu 16.04 LTS just now.
>
> —Tom
>
>
>


ARIA-354 Verified

2017-11-27 Thread Thomas Nadeau

I took an action during the grooming to verify the installation of the 
latest PIP artifacts.
I was able to install successfully on Ubuntu 16.04 LTS just now.

—Tom




Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
Glad its working! And if there's anyone to thank, its our crack infra
team.

On Nov 27, 2017 2:57 PM, "Vishwanath Jayaraman" 
wrote:

John,

 I am now able to see the edit button on the WIKI page and also able to
change state of the JIRA item.

That was fast, thanks a lot for all your help.


Vish



From: John D. Ament 
Sent: Monday, November 27, 2017 1:52 PM
To: dev@ariatosca.incubator.apache.org
Subject: Re: ASF Slack Access and Write Permissions to the Wiki

Vish can you try now?

On Nov 27, 2017 2:28 PM, "Thomas Nadeau"  wrote:

> +1
>
> > On Nov 27, 2017, at 1:44 PM, John D. Ament 
> wrote:
> >
> > I think I see the issue.  In the JIRA permission scheme, contributors
can
> > resolve and close issues, but not transition them.  Are we in agreement
> > that contributors should be able to transition issues?
> >
> > On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
> wrote:
> >
> >> which issue?
> >>
> >>> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> >> vishwana...@hotmail.com> wrote:
> >>>
> >>> Thanks John.
> >>> Is there a reason why I am not able to edit the state of a Jira item
> >> assigned to me?
> >>>
> >>>
> >>> Sent from my iPhone
> >>>
> >>> On Nov 27, 2017, at 12:25 PM, John D. Ament  >> > wrote:
> >>>
> >>> I've given you both access to confluence.  I added MIguel as a
> >> contributor
> >>> in JIRA, Vish you were already listed as a contributor.
> >>>
> >>> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> >>> vishwana...@hotmail.com> wrote:
> >>>
> >>> John,
> >>>
> >>> My username is vishwanathj and associated email address is
> >>> vishwana...@hotmail.com.
> >>>
> >>> I need edit access to confuence/wiki and permissions in JIRA to be
able
> >> to
> >>> change issue states from Open->Progress->resolved, etc.
> >>>
> >>> Thanks in advance for all your help.
> >>>
> >>> Vish
> >>>
> >>>
> >>> 
> >>> From: John D. Ament  
> >>> Sent: Monday, November 27, 2017 12:13 PM
> >>> To: dev@ariatosca.incubator.apache.org >> dev@ariatosca.incubator.apache.org>
> >>> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> >>>
> >>> Miguel,
> >>>
> >>> To get you set up on JIRA and Confluence, we'll need to know your
> >> username.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau  >> >
> >>> wrote:
> >>>
> >>>
> >>>  Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> >>> looking for wiki and Slack access
> >>> only.  Vish ran into the same issue earlier with wiki access, but in
> his
> >>> case permissions
> >>> vanished after he did have write access to the wiki.
> >>>
> >>>  —Tom
> >>>
> >>>
> >>> On Nov 27, 2017, at 12:21 PM, John D. Ament  >> >
> >>> wrote:
> >>>
> >>> Hi,
> >>>
> >>> I saw your email to general@incubator.  I'm not sure what your goal
> >>> is.  Do
> >>> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> >>> wiki/JIRA?
> >>>
> >>> Note that apache.org emails are only given to
> >> committers.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> >>> mig...@rigiresearch.com> wrote:
> >>>
> >>> Thank you Tom. I was reading about the Apache email account and
> >>> wasn't sure if I should contact the infrastructure team. I'll send the
> >>> email.
> >>>
> >>> Miguel
> >>>
> >>> --
> >>> Miguel Jimenez, PhD student
> >>> Department of Computer Science
> >>> University of Victoria
> >>> Engineering/Computer Science Building (ECS), Room 412
> >>> Victoria, BC
> >>> V8W 3p6 Canada
> >>>
> >>> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  >> 
> >>>
> >>> wrote:
> >>>
> >>>
> >>> Miguel asked about getting access to ASF Slack at the
> >>> grooming call this morning, so I thought I’d send this to the entire
> >>> list.
> >>>
> >>> In order to gain access, please send email to
> >>> gene...@incubator.apache.org
> >>> asking for write permissions on your Apache ID for the wiki/jira
> >>> as well as access to the Slack channel.
> >>>
> >>> —Tom
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>
> >>
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Vishwanath Jayaraman
John,

 I am now able to see the edit button on the WIKI page and also able to change 
state of the JIRA item.

That was fast, thanks a lot for all your help.


Vish



From: John D. Ament 
Sent: Monday, November 27, 2017 1:52 PM
To: dev@ariatosca.incubator.apache.org
Subject: Re: ASF Slack Access and Write Permissions to the Wiki

Vish can you try now?

On Nov 27, 2017 2:28 PM, "Thomas Nadeau"  wrote:

> +1
>
> > On Nov 27, 2017, at 1:44 PM, John D. Ament 
> wrote:
> >
> > I think I see the issue.  In the JIRA permission scheme, contributors can
> > resolve and close issues, but not transition them.  Are we in agreement
> > that contributors should be able to transition issues?
> >
> > On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
> wrote:
> >
> >> which issue?
> >>
> >>> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> >> vishwana...@hotmail.com> wrote:
> >>>
> >>> Thanks John.
> >>> Is there a reason why I am not able to edit the state of a Jira item
> >> assigned to me?
> >>>
> >>>
> >>> Sent from my iPhone
> >>>
> >>> On Nov 27, 2017, at 12:25 PM, John D. Ament  >> > wrote:
> >>>
> >>> I've given you both access to confluence.  I added MIguel as a
> >> contributor
> >>> in JIRA, Vish you were already listed as a contributor.
> >>>
> >>> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> >>> vishwana...@hotmail.com> wrote:
> >>>
> >>> John,
> >>>
> >>> My username is vishwanathj and associated email address is
> >>> vishwana...@hotmail.com.
> >>>
> >>> I need edit access to confuence/wiki and permissions in JIRA to be able
> >> to
> >>> change issue states from Open->Progress->resolved, etc.
> >>>
> >>> Thanks in advance for all your help.
> >>>
> >>> Vish
> >>>
> >>>
> >>> 
> >>> From: John D. Ament  
> >>> Sent: Monday, November 27, 2017 12:13 PM
> >>> To: dev@ariatosca.incubator.apache.org >> dev@ariatosca.incubator.apache.org>
> >>> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> >>>
> >>> Miguel,
> >>>
> >>> To get you set up on JIRA and Confluence, we'll need to know your
> >> username.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau  >> >
> >>> wrote:
> >>>
> >>>
> >>>  Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> >>> looking for wiki and Slack access
> >>> only.  Vish ran into the same issue earlier with wiki access, but in
> his
> >>> case permissions
> >>> vanished after he did have write access to the wiki.
> >>>
> >>>  —Tom
> >>>
> >>>
> >>> On Nov 27, 2017, at 12:21 PM, John D. Ament  >> >
> >>> wrote:
> >>>
> >>> Hi,
> >>>
> >>> I saw your email to general@incubator.  I'm not sure what your goal
> >>> is.  Do
> >>> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> >>> wiki/JIRA?
> >>>
> >>> Note that apache.org emails are only given to
> >> committers.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> >>> mig...@rigiresearch.com> wrote:
> >>>
> >>> Thank you Tom. I was reading about the Apache email account and
> >>> wasn't sure if I should contact the infrastructure team. I'll send the
> >>> email.
> >>>
> >>> Miguel
> >>>
> >>> --
> >>> Miguel Jimenez, PhD student
> >>> Department of Computer Science
> >>> University of Victoria
> >>> Engineering/Computer Science Building (ECS), Room 412
> >>> Victoria, BC
> >>> V8W 3p6 Canada
> >>>
> >>> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  >> 
> >>>
> >>> wrote:
> >>>
> >>>
> >>> Miguel asked about getting access to ASF Slack at the
> >>> grooming call this morning, so I thought I’d send this to the entire
> >>> list.
> >>>
> >>> In order to gain access, please send email to
> >>> gene...@incubator.apache.org
> >>> asking for write permissions on your Apache ID for the wiki/jira
> >>> as well as access to the Slack channel.
> >>>
> >>> —Tom
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>
> >>
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau
Im talking to Vish now. Looks like your fixes worked.

Thx!

> On Nov 27, 2017, at 2:52 PM, John D. Ament  wrote:
> 
> Vish can you try now?
> 
> On Nov 27, 2017 2:28 PM, "Thomas Nadeau"  wrote:
> 
>> +1
>> 
>>> On Nov 27, 2017, at 1:44 PM, John D. Ament 
>> wrote:
>>> 
>>> I think I see the issue.  In the JIRA permission scheme, contributors can
>>> resolve and close issues, but not transition them.  Are we in agreement
>>> that contributors should be able to transition issues?
>>> 
>>> On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
>> wrote:
>>> 
 which issue?
 
> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
 vishwana...@hotmail.com> wrote:
> 
> Thanks John.
> Is there a reason why I am not able to edit the state of a Jira item
 assigned to me?
> 
> 
> Sent from my iPhone
> 
> On Nov 27, 2017, at 12:25 PM, John D. Ament > wrote:
> 
> I've given you both access to confluence.  I added MIguel as a
 contributor
> in JIRA, Vish you were already listed as a contributor.
> 
> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
> 
> John,
> 
> My username is vishwanathj and associated email address is
> vishwana...@hotmail.com.
> 
> I need edit access to confuence/wiki and permissions in JIRA to be able
 to
> change issue states from Open->Progress->resolved, etc.
> 
> Thanks in advance for all your help.
> 
> Vish
> 
> 
> 
> From: John D. Ament  johndam...@apache.org
>> 
> Sent: Monday, November 27, 2017 12:13 PM
> To: dev@ariatosca.incubator.apache.org>>> dev@ariatosca.incubator.apache.org>
> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> 
> Miguel,
> 
> To get you set up on JIRA and Confluence, we'll need to know your
 username.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau >
> wrote:
> 
> 
> Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> looking for wiki and Slack access
> only.  Vish ran into the same issue earlier with wiki access, but in
>> his
> case permissions
> vanished after he did have write access to the wiki.
> 
> —Tom
> 
> 
> On Nov 27, 2017, at 12:21 PM, John D. Ament >
> wrote:
> 
> Hi,
> 
> I saw your email to general@incubator.  I'm not sure what your goal
> is.  Do
> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> wiki/JIRA?
> 
> Note that apache.org emails are only given to
 committers.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
> 
> Thank you Tom. I was reading about the Apache email account and
> wasn't sure if I should contact the infrastructure team. I'll send the
> email.
> 
> Miguel
> 
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
> 
> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> 
> wrote:
> 
> 
>Miguel asked about getting access to ASF Slack at the
> grooming call this morning, so I thought I’d send this to the entire
> list.
> 
>In order to gain access, please send email to
> gene...@incubator.apache.org
> asking for write permissions on your Apache ID for the wiki/jira
> as well as access to the Slack channel.
> 
>—Tom
> 
> 
> 
> 
> 
> 
> 
> 
 
 
>> 
>> 



Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
Vish can you try now?

On Nov 27, 2017 2:28 PM, "Thomas Nadeau"  wrote:

> +1
>
> > On Nov 27, 2017, at 1:44 PM, John D. Ament 
> wrote:
> >
> > I think I see the issue.  In the JIRA permission scheme, contributors can
> > resolve and close issues, but not transition them.  Are we in agreement
> > that contributors should be able to transition issues?
> >
> > On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
> wrote:
> >
> >> which issue?
> >>
> >>> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> >> vishwana...@hotmail.com> wrote:
> >>>
> >>> Thanks John.
> >>> Is there a reason why I am not able to edit the state of a Jira item
> >> assigned to me?
> >>>
> >>>
> >>> Sent from my iPhone
> >>>
> >>> On Nov 27, 2017, at 12:25 PM, John D. Ament  >> > wrote:
> >>>
> >>> I've given you both access to confluence.  I added MIguel as a
> >> contributor
> >>> in JIRA, Vish you were already listed as a contributor.
> >>>
> >>> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> >>> vishwana...@hotmail.com> wrote:
> >>>
> >>> John,
> >>>
> >>> My username is vishwanathj and associated email address is
> >>> vishwana...@hotmail.com.
> >>>
> >>> I need edit access to confuence/wiki and permissions in JIRA to be able
> >> to
> >>> change issue states from Open->Progress->resolved, etc.
> >>>
> >>> Thanks in advance for all your help.
> >>>
> >>> Vish
> >>>
> >>>
> >>> 
> >>> From: John D. Ament  
> >>> Sent: Monday, November 27, 2017 12:13 PM
> >>> To: dev@ariatosca.incubator.apache.org >> dev@ariatosca.incubator.apache.org>
> >>> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> >>>
> >>> Miguel,
> >>>
> >>> To get you set up on JIRA and Confluence, we'll need to know your
> >> username.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau  >> >
> >>> wrote:
> >>>
> >>>
> >>>  Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> >>> looking for wiki and Slack access
> >>> only.  Vish ran into the same issue earlier with wiki access, but in
> his
> >>> case permissions
> >>> vanished after he did have write access to the wiki.
> >>>
> >>>  —Tom
> >>>
> >>>
> >>> On Nov 27, 2017, at 12:21 PM, John D. Ament  >> >
> >>> wrote:
> >>>
> >>> Hi,
> >>>
> >>> I saw your email to general@incubator.  I'm not sure what your goal
> >>> is.  Do
> >>> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> >>> wiki/JIRA?
> >>>
> >>> Note that apache.org emails are only given to
> >> committers.
> >>>
> >>> John
> >>>
> >>> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> >>> mig...@rigiresearch.com> wrote:
> >>>
> >>> Thank you Tom. I was reading about the Apache email account and
> >>> wasn't sure if I should contact the infrastructure team. I'll send the
> >>> email.
> >>>
> >>> Miguel
> >>>
> >>> --
> >>> Miguel Jimenez, PhD student
> >>> Department of Computer Science
> >>> University of Victoria
> >>> Engineering/Computer Science Building (ECS), Room 412
> >>> Victoria, BC
> >>> V8W 3p6 Canada
> >>>
> >>> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  >> 
> >>>
> >>> wrote:
> >>>
> >>>
> >>> Miguel asked about getting access to ASF Slack at the
> >>> grooming call this morning, so I thought I’d send this to the entire
> >>> list.
> >>>
> >>> In order to gain access, please send email to
> >>> gene...@incubator.apache.org
> >>> asking for write permissions on your Apache ID for the wiki/jira
> >>> as well as access to the Slack channel.
> >>>
> >>> —Tom
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>
> >>
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau
+1

> On Nov 27, 2017, at 1:44 PM, John D. Ament  wrote:
> 
> I think I see the issue.  In the JIRA permission scheme, contributors can
> resolve and close issues, but not transition them.  Are we in agreement
> that contributors should be able to transition issues?
> 
> On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau  wrote:
> 
>> which issue?
>> 
>>> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
>> vishwana...@hotmail.com> wrote:
>>> 
>>> Thanks John.
>>> Is there a reason why I am not able to edit the state of a Jira item
>> assigned to me?
>>> 
>>> 
>>> Sent from my iPhone
>>> 
>>> On Nov 27, 2017, at 12:25 PM, John D. Ament > > wrote:
>>> 
>>> I've given you both access to confluence.  I added MIguel as a
>> contributor
>>> in JIRA, Vish you were already listed as a contributor.
>>> 
>>> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
>>> vishwana...@hotmail.com> wrote:
>>> 
>>> John,
>>> 
>>> My username is vishwanathj and associated email address is
>>> vishwana...@hotmail.com.
>>> 
>>> I need edit access to confuence/wiki and permissions in JIRA to be able
>> to
>>> change issue states from Open->Progress->resolved, etc.
>>> 
>>> Thanks in advance for all your help.
>>> 
>>> Vish
>>> 
>>> 
>>> 
>>> From: John D. Ament >> Sent: Monday, November 27, 2017 12:13 PM
>>> To: dev@ariatosca.incubator.apache.org> dev@ariatosca.incubator.apache.org>
>>> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
>>> 
>>> Miguel,
>>> 
>>> To get you set up on JIRA and Confluence, we'll need to know your
>> username.
>>> 
>>> John
>>> 
>>> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau > >
>>> wrote:
>>> 
>>> 
>>>  Sorry by “apache ID” I meant “jira login” below.  I think Miguel
>>> looking for wiki and Slack access
>>> only.  Vish ran into the same issue earlier with wiki access, but in his
>>> case permissions
>>> vanished after he did have write access to the wiki.
>>> 
>>>  —Tom
>>> 
>>> 
>>> On Nov 27, 2017, at 12:21 PM, John D. Ament > >
>>> wrote:
>>> 
>>> Hi,
>>> 
>>> I saw your email to general@incubator.  I'm not sure what your goal
>>> is.  Do
>>> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
>>> wiki/JIRA?
>>> 
>>> Note that apache.org emails are only given to
>> committers.
>>> 
>>> John
>>> 
>>> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
>>> mig...@rigiresearch.com> wrote:
>>> 
>>> Thank you Tom. I was reading about the Apache email account and
>>> wasn't sure if I should contact the infrastructure team. I'll send the
>>> email.
>>> 
>>> Miguel
>>> 
>>> --
>>> Miguel Jimenez, PhD student
>>> Department of Computer Science
>>> University of Victoria
>>> Engineering/Computer Science Building (ECS), Room 412
>>> Victoria, BC
>>> V8W 3p6 Canada
>>> 
>>> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau > 
>>> 
>>> wrote:
>>> 
>>> 
>>> Miguel asked about getting access to ASF Slack at the
>>> grooming call this morning, so I thought I’d send this to the entire
>>> list.
>>> 
>>> In order to gain access, please send email to
>>> gene...@incubator.apache.org
>>> asking for write permissions on your Apache ID for the wiki/jira
>>> as well as access to the Slack channel.
>>> 
>>> —Tom
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>> 
>> 



Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
Requested -> https://issues.apache.org/jira/browse/INFRA-15566


On Mon, Nov 27, 2017 at 1:50 PM Tal Liron  wrote:

> I see no harm in giving them that permission.
>
> On Mon, Nov 27, 2017 at 12:44 PM, John D. Ament 
> wrote:
>
> > I think I see the issue.  In the JIRA permission scheme, contributors can
> > resolve and close issues, but not transition them.  Are we in agreement
> > that contributors should be able to transition issues?
> >
> > On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
> > wrote:
> >
> > > which issue?
> > >
> > > > On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> > > vishwana...@hotmail.com> wrote:
> > > >
> > > > Thanks John.
> > > > Is there a reason why I am not able to edit the state of a Jira item
> > > assigned to me?
> > > >
> > > >
> > > > Sent from my iPhone
> > > >
> > > > On Nov 27, 2017, at 12:25 PM, John D. Ament  > > > wrote:
> > > >
> > > > I've given you both access to confluence.  I added MIguel as a
> > > contributor
> > > > in JIRA, Vish you were already listed as a contributor.
> > > >
> > > > On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> > > > vishwana...@hotmail.com> wrote:
> > > >
> > > > John,
> > > >
> > > > My username is vishwanathj and associated email address is
> > > > vishwana...@hotmail.com.
> > > >
> > > > I need edit access to confuence/wiki and permissions in JIRA to be
> able
> > > to
> > > > change issue states from Open->Progress->resolved, etc.
> > > >
> > > > Thanks in advance for all your help.
> > > >
> > > > Vish
> > > >
> > > >
> > > > 
> > > > From: John D. Ament  johndam...@apache.org
> > > >>
> > > > Sent: Monday, November 27, 2017 12:13 PM
> > > > To: dev@ariatosca.incubator.apache.org > > dev@ariatosca.incubator.apache.org>
> > > > Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> > > >
> > > > Miguel,
> > > >
> > > > To get you set up on JIRA and Confluence, we'll need to know your
> > > username.
> > > >
> > > > John
> > > >
> > > > On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau <
> tnadeaua...@gmail.com
> > > >
> > > > wrote:
> > > >
> > > >
> > > >   Sorry by “apache ID” I meant “jira login” below.  I think
> Miguel
> > > > looking for wiki and Slack access
> > > > only.  Vish ran into the same issue earlier with wiki access, but in
> > his
> > > > case permissions
> > > > vanished after he did have write access to the wiki.
> > > >
> > > >   —Tom
> > > >
> > > >
> > > > On Nov 27, 2017, at 12:21 PM, John D. Ament  > > >
> > > > wrote:
> > > >
> > > > Hi,
> > > >
> > > > I saw your email to general@incubator.  I'm not sure what your goal
> > > > is.  Do
> > > > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > > > wiki/JIRA?
> > > >
> > > > Note that apache.org emails are only given to
> > > committers.
> > > >
> > > > John
> > > >
> > > > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > > > mig...@rigiresearch.com> wrote:
> > > >
> > > > Thank you Tom. I was reading about the Apache email account and
> > > > wasn't sure if I should contact the infrastructure team. I'll send
> the
> > > > email.
> > > >
> > > > Miguel
> > > >
> > > > --
> > > > Miguel Jimenez, PhD student
> > > > Department of Computer Science
> > > > University of Victoria
> > > > Engineering/Computer Science Building (ECS), Room 412
> > > > Victoria, BC
> > > > V8W 3p6 Canada
> > > >
> > > > On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau <
> tnadeaua...@gmail.com
> > > 
> > > >
> > > > wrote:
> > > >
> > > >
> > > >  Miguel asked about getting access to ASF Slack at the
> > > > grooming call this morning, so I thought I’d send this to the entire
> > > > list.
> > > >
> > > >  In order to gain access, please send email to
> > > > gene...@incubator.apache.org
> > > > asking for write permissions on your Apache ID for the wiki/jira
> > > > as well as access to the Slack channel.
> > > >
> > > >  —Tom
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Tal Liron
I see no harm in giving them that permission.

On Mon, Nov 27, 2017 at 12:44 PM, John D. Ament 
wrote:

> I think I see the issue.  In the JIRA permission scheme, contributors can
> resolve and close issues, but not transition them.  Are we in agreement
> that contributors should be able to transition issues?
>
> On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau 
> wrote:
>
> > which issue?
> >
> > > On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> > vishwana...@hotmail.com> wrote:
> > >
> > > Thanks John.
> > > Is there a reason why I am not able to edit the state of a Jira item
> > assigned to me?
> > >
> > >
> > > Sent from my iPhone
> > >
> > > On Nov 27, 2017, at 12:25 PM, John D. Ament  > > wrote:
> > >
> > > I've given you both access to confluence.  I added MIguel as a
> > contributor
> > > in JIRA, Vish you were already listed as a contributor.
> > >
> > > On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> > > vishwana...@hotmail.com> wrote:
> > >
> > > John,
> > >
> > > My username is vishwanathj and associated email address is
> > > vishwana...@hotmail.com.
> > >
> > > I need edit access to confuence/wiki and permissions in JIRA to be able
> > to
> > > change issue states from Open->Progress->resolved, etc.
> > >
> > > Thanks in advance for all your help.
> > >
> > > Vish
> > >
> > >
> > > 
> > > From: John D. Ament  > >>
> > > Sent: Monday, November 27, 2017 12:13 PM
> > > To: dev@ariatosca.incubator.apache.org > dev@ariatosca.incubator.apache.org>
> > > Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> > >
> > > Miguel,
> > >
> > > To get you set up on JIRA and Confluence, we'll need to know your
> > username.
> > >
> > > John
> > >
> > > On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau  > >
> > > wrote:
> > >
> > >
> > >   Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> > > looking for wiki and Slack access
> > > only.  Vish ran into the same issue earlier with wiki access, but in
> his
> > > case permissions
> > > vanished after he did have write access to the wiki.
> > >
> > >   —Tom
> > >
> > >
> > > On Nov 27, 2017, at 12:21 PM, John D. Ament  > >
> > > wrote:
> > >
> > > Hi,
> > >
> > > I saw your email to general@incubator.  I'm not sure what your goal
> > > is.  Do
> > > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > > wiki/JIRA?
> > >
> > > Note that apache.org emails are only given to
> > committers.
> > >
> > > John
> > >
> > > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > > Thank you Tom. I was reading about the Apache email account and
> > > wasn't sure if I should contact the infrastructure team. I'll send the
> > > email.
> > >
> > > Miguel
> > >
> > > --
> > > Miguel Jimenez, PhD student
> > > Department of Computer Science
> > > University of Victoria
> > > Engineering/Computer Science Building (ECS), Room 412
> > > Victoria, BC
> > > V8W 3p6 Canada
> > >
> > > On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  > 
> > >
> > > wrote:
> > >
> > >
> > >  Miguel asked about getting access to ASF Slack at the
> > > grooming call this morning, so I thought I’d send this to the entire
> > > list.
> > >
> > >  In order to gain access, please send email to
> > > gene...@incubator.apache.org
> > > asking for write permissions on your Apache ID for the wiki/jira
> > > as well as access to the Slack channel.
> > >
> > >  —Tom
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
I think I see the issue.  In the JIRA permission scheme, contributors can
resolve and close issues, but not transition them.  Are we in agreement
that contributors should be able to transition issues?

On Mon, Nov 27, 2017 at 1:41 PM Thomas Nadeau  wrote:

> which issue?
>
> > On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
> >
> > Thanks John.
> > Is there a reason why I am not able to edit the state of a Jira item
> assigned to me?
> >
> >
> > Sent from my iPhone
> >
> > On Nov 27, 2017, at 12:25 PM, John D. Ament  > wrote:
> >
> > I've given you both access to confluence.  I added MIguel as a
> contributor
> > in JIRA, Vish you were already listed as a contributor.
> >
> > On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> > vishwana...@hotmail.com> wrote:
> >
> > John,
> >
> > My username is vishwanathj and associated email address is
> > vishwana...@hotmail.com.
> >
> > I need edit access to confuence/wiki and permissions in JIRA to be able
> to
> > change issue states from Open->Progress->resolved, etc.
> >
> > Thanks in advance for all your help.
> >
> > Vish
> >
> >
> > 
> > From: John D. Ament  >>
> > Sent: Monday, November 27, 2017 12:13 PM
> > To: dev@ariatosca.incubator.apache.org dev@ariatosca.incubator.apache.org>
> > Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> >
> > Miguel,
> >
> > To get you set up on JIRA and Confluence, we'll need to know your
> username.
> >
> > John
> >
> > On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau  >
> > wrote:
> >
> >
> >   Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> > looking for wiki and Slack access
> > only.  Vish ran into the same issue earlier with wiki access, but in his
> > case permissions
> > vanished after he did have write access to the wiki.
> >
> >   —Tom
> >
> >
> > On Nov 27, 2017, at 12:21 PM, John D. Ament  >
> > wrote:
> >
> > Hi,
> >
> > I saw your email to general@incubator.  I'm not sure what your goal
> > is.  Do
> > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > wiki/JIRA?
> >
> > Note that apache.org emails are only given to
> committers.
> >
> > John
> >
> > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> > Thank you Tom. I was reading about the Apache email account and
> > wasn't sure if I should contact the infrastructure team. I'll send the
> > email.
> >
> > Miguel
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  
> >
> > wrote:
> >
> >
> >  Miguel asked about getting access to ASF Slack at the
> > grooming call this morning, so I thought I’d send this to the entire
> > list.
> >
> >  In order to gain access, please send email to
> > gene...@incubator.apache.org
> > asking for write permissions on your Apache ID for the wiki/jira
> > as well as access to the Slack channel.
> >
> >  —Tom
> >
> >
> >
> >
> >
> >
> >
> >
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Vishwanath Jayaraman
Aria -399, I want to be able to move it to In Progress from Open.

Sent from my iPhone

On Nov 27, 2017, at 12:41 PM, Thomas Nadeau 
> wrote:

which issue?

On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman 
> wrote:

Thanks John.
Is there a reason why I am not able to edit the state of a Jira item assigned 
to me?


Sent from my iPhone

On Nov 27, 2017, at 12:25 PM, John D. Ament 
>
 wrote:

I've given you both access to confluence.  I added MIguel as a contributor
in JIRA, Vish you were already listed as a contributor.

On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
vishwana...@hotmail.com>
 wrote:

John,

My username is vishwanathj and associated email address is
vishwana...@hotmail.com.

I need edit access to confuence/wiki and permissions in JIRA to be able to
change issue states from Open->Progress->resolved, etc.

Thanks in advance for all your help.

Vish



From: John D. Ament 
>
Sent: Monday, November 27, 2017 12:13 PM
To: 
dev@ariatosca.incubator.apache.org
Subject: Re: ASF Slack Access and Write Permissions to the Wiki

Miguel,

To get you set up on JIRA and Confluence, we'll need to know your username.

John

On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
>
wrote:


 Sorry by “apache ID” I meant “jira login” below.  I think Miguel
looking for wiki and Slack access
only.  Vish ran into the same issue earlier with wiki access, but in his
case permissions
vanished after he did have write access to the wiki.

 —Tom


On Nov 27, 2017, at 12:21 PM, John D. Ament 
>
wrote:

Hi,

I saw your email to general@incubator.  I'm not sure what your goal
is.  Do
you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
wiki/JIRA?

Note that apache.org emails are only 
given to committers.

John

On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com>
 wrote:

Thank you Tom. I was reading about the Apache email account and
wasn't sure if I should contact the infrastructure team. I'll send the
email.

Miguel

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 


wrote:


Miguel asked about getting access to ASF Slack at the
grooming call this morning, so I thought I’d send this to the entire
list.

In order to gain access, please send email to
gene...@incubator.apache.org
asking for write permissions on your Apache ID for the wiki/jira
as well as access to the Slack channel.

—Tom











Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau
which issue?

> On Nov 27, 2017, at 1:33 PM, Vishwanath Jayaraman  
> wrote:
> 
> Thanks John.
> Is there a reason why I am not able to edit the state of a Jira item assigned 
> to me?
> 
> 
> Sent from my iPhone
> 
> On Nov 27, 2017, at 12:25 PM, John D. Ament 
> > wrote:
> 
> I've given you both access to confluence.  I added MIguel as a contributor
> in JIRA, Vish you were already listed as a contributor.
> 
> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
> 
> John,
> 
> My username is vishwanathj and associated email address is
> vishwana...@hotmail.com.
> 
> I need edit access to confuence/wiki and permissions in JIRA to be able to
> change issue states from Open->Progress->resolved, etc.
> 
> Thanks in advance for all your help.
> 
> Vish
> 
> 
> 
> From: John D. Ament >
> Sent: Monday, November 27, 2017 12:13 PM
> To: 
> dev@ariatosca.incubator.apache.org
> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> 
> Miguel,
> 
> To get you set up on JIRA and Confluence, we'll need to know your username.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
> >
> wrote:
> 
> 
>   Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> looking for wiki and Slack access
> only.  Vish ran into the same issue earlier with wiki access, but in his
> case permissions
> vanished after he did have write access to the wiki.
> 
>   —Tom
> 
> 
> On Nov 27, 2017, at 12:21 PM, John D. Ament 
> >
> wrote:
> 
> Hi,
> 
> I saw your email to general@incubator.  I'm not sure what your goal
> is.  Do
> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> wiki/JIRA?
> 
> Note that apache.org emails are only given to committers.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
> 
> Thank you Tom. I was reading about the Apache email account and
> wasn't sure if I should contact the infrastructure team. I'll send the
> email.
> 
> Miguel
> 
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
> 
> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> 
> 
> wrote:
> 
> 
>  Miguel asked about getting access to ASF Slack at the
> grooming call this morning, so I thought I’d send this to the entire
> list.
> 
>  In order to gain access, please send email to
> gene...@incubator.apache.org
> asking for write permissions on your Apache ID for the wiki/jira
> as well as access to the Slack channel.
> 
>  —Tom
> 
> 
> 
> 
> 
> 
> 
> 



Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau
thanks again for helping out on this.  On today’s grooming someone suggested
that we add this to the wiki’s “getting started” so that we have this straight
for future contributors.  Its on my list.

—Tom


> On Nov 27, 2017, at 1:13 PM, John D. Ament  wrote:
> 
> Miguel,
> 
> To get you set up on JIRA and Confluence, we'll need to know your username.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
> wrote:
> 
>> 
>>Sorry by “apache ID” I meant “jira login” below.  I think Miguel
>> looking for wiki and Slack access
>> only.  Vish ran into the same issue earlier with wiki access, but in his
>> case permissions
>> vanished after he did have write access to the wiki.
>> 
>>—Tom
>> 
>> 
>>> On Nov 27, 2017, at 12:21 PM, John D. Ament 
>> wrote:
>>> 
>>> Hi,
>>> 
>>> I saw your email to general@incubator.  I'm not sure what your goal
>> is.  Do
>>> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
>>> wiki/JIRA?
>>> 
>>> Note that apache.org emails are only given to committers.
>>> 
>>> John
>>> 
>>> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
>>> mig...@rigiresearch.com> wrote:
>>> 
 Thank you Tom. I was reading about the Apache email account and
 wasn't sure if I should contact the infrastructure team. I'll send the
 email.
 
 Miguel
 
 --
 Miguel Jimenez, PhD student
 Department of Computer Science
 University of Victoria
 Engineering/Computer Science Building (ECS), Room 412
 Victoria, BC
 V8W 3p6 Canada
 
 On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
 wrote:
 
> 
>   Miguel asked about getting access to ASF Slack at the
> grooming call this morning, so I thought I’d send this to the entire
> list.
> 
>   In order to gain access, please send email to
> gene...@incubator.apache.org
> asking for write permissions on your Apache ID for the wiki/jira
> as well as access to the Slack channel.
> 
>   —Tom
> 
> 
> 
> 
 
>> 
>> 



Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Vishwanath Jayaraman
Thanks John.
Is there a reason why I am not able to edit the state of a Jira item assigned 
to me?


Sent from my iPhone

On Nov 27, 2017, at 12:25 PM, John D. Ament 
> wrote:

I've given you both access to confluence.  I added MIguel as a contributor
in JIRA, Vish you were already listed as a contributor.

On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
vishwana...@hotmail.com> wrote:

John,

My username is vishwanathj and associated email address is
vishwana...@hotmail.com.

I need edit access to confuence/wiki and permissions in JIRA to be able to
change issue states from Open->Progress->resolved, etc.

Thanks in advance for all your help.

Vish



From: John D. Ament >
Sent: Monday, November 27, 2017 12:13 PM
To: 
dev@ariatosca.incubator.apache.org
Subject: Re: ASF Slack Access and Write Permissions to the Wiki

Miguel,

To get you set up on JIRA and Confluence, we'll need to know your username.

John

On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
>
wrote:


   Sorry by “apache ID” I meant “jira login” below.  I think Miguel
looking for wiki and Slack access
only.  Vish ran into the same issue earlier with wiki access, but in his
case permissions
vanished after he did have write access to the wiki.

   —Tom


On Nov 27, 2017, at 12:21 PM, John D. Ament 
>
wrote:

Hi,

I saw your email to general@incubator.  I'm not sure what your goal
is.  Do
you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
wiki/JIRA?

Note that apache.org emails are only given to committers.

John

On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

Thank you Tom. I was reading about the Apache email account and
wasn't sure if I should contact the infrastructure team. I'll send the
email.

Miguel

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 


wrote:


  Miguel asked about getting access to ASF Slack at the
grooming call this morning, so I thought I’d send this to the entire
list.

  In order to gain access, please send email to
gene...@incubator.apache.org
asking for write permissions on your Apache ID for the wiki/jira
as well as access to the Slack channel.

  —Tom










Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Miguel Angel Jimenez Achinte
Thank you for your help, John.

Thomas, regarding the Slack channel, how should I proceed to get an
invitation?
Thanks in advance,
Miguel


--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 10:24 AM, John D. Ament 
wrote:

> I've given you both access to confluence.  I added MIguel as a contributor
> in JIRA, Vish you were already listed as a contributor.
>
> On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
> vishwana...@hotmail.com> wrote:
>
> > John,
> >
> >  My username is vishwanathj and associated email address is
> > vishwana...@hotmail.com.
> >
> > I need edit access to confuence/wiki and permissions in JIRA to be able
> to
> > change issue states from Open->Progress->resolved, etc.
> >
> > Thanks in advance for all your help.
> >
> > Vish
> >
> >
> > 
> > From: John D. Ament 
> > Sent: Monday, November 27, 2017 12:13 PM
> > To: dev@ariatosca.incubator.apache.org
> > Subject: Re: ASF Slack Access and Write Permissions to the Wiki
> >
> > Miguel,
> >
> > To get you set up on JIRA and Confluence, we'll need to know your
> username.
> >
> > John
> >
> > On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
> > wrote:
> >
> > >
> > > Sorry by “apache ID” I meant “jira login” below.  I think
> Miguel
> > > looking for wiki and Slack access
> > > only.  Vish ran into the same issue earlier with wiki access, but in
> his
> > > case permissions
> > > vanished after he did have write access to the wiki.
> > >
> > > —Tom
> > >
> > >
> > > > On Nov 27, 2017, at 12:21 PM, John D. Ament 
> > > wrote:
> > > >
> > > > Hi,
> > > >
> > > > I saw your email to general@incubator.  I'm not sure what your goal
> > > is.  Do
> > > > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > > > wiki/JIRA?
> > > >
> > > > Note that apache.org emails are only given to committers.
> > > >
> > > > John
> > > >
> > > > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > > > mig...@rigiresearch.com> wrote:
> > > >
> > > >> Thank you Tom. I was reading about the Apache email account and
> > > >> wasn't sure if I should contact the infrastructure team. I'll send
> the
> > > >> email.
> > > >>
> > > >> Miguel
> > > >>
> > > >> --
> > > >> Miguel Jimenez, PhD student
> > > >> Department of Computer Science
> > > >> University of Victoria
> > > >> Engineering/Computer Science Building (ECS), Room 412
> > > >> Victoria, BC
> > > >> V8W 3p6 Canada
> > > >>
> > > >> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau <
> tnadeaua...@gmail.com
> > >
> > > >> wrote:
> > > >>
> > > >>>
> > > >>>Miguel asked about getting access to ASF Slack at the
> > > >>> grooming call this morning, so I thought I’d send this to the
> entire
> > > >>> list.
> > > >>>
> > > >>>In order to gain access, please send email to
> > > >>> gene...@incubator.apache.org
> > > >>> asking for write permissions on your Apache ID for the wiki/jira
> > > >>> as well as access to the Slack channel.
> > > >>>
> > > >>>—Tom
> > > >>>
> > > >>>
> > > >>>
> > > >>>
> > > >>
> > >
> > >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
I've given you both access to confluence.  I added MIguel as a contributor
in JIRA, Vish you were already listed as a contributor.

On Mon, Nov 27, 2017 at 1:19 PM Vishwanath Jayaraman <
vishwana...@hotmail.com> wrote:

> John,
>
>  My username is vishwanathj and associated email address is
> vishwana...@hotmail.com.
>
> I need edit access to confuence/wiki and permissions in JIRA to be able to
> change issue states from Open->Progress->resolved, etc.
>
> Thanks in advance for all your help.
>
> Vish
>
>
> 
> From: John D. Ament 
> Sent: Monday, November 27, 2017 12:13 PM
> To: dev@ariatosca.incubator.apache.org
> Subject: Re: ASF Slack Access and Write Permissions to the Wiki
>
> Miguel,
>
> To get you set up on JIRA and Confluence, we'll need to know your username.
>
> John
>
> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
> wrote:
>
> >
> > Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> > looking for wiki and Slack access
> > only.  Vish ran into the same issue earlier with wiki access, but in his
> > case permissions
> > vanished after he did have write access to the wiki.
> >
> > —Tom
> >
> >
> > > On Nov 27, 2017, at 12:21 PM, John D. Ament 
> > wrote:
> > >
> > > Hi,
> > >
> > > I saw your email to general@incubator.  I'm not sure what your goal
> > is.  Do
> > > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > > wiki/JIRA?
> > >
> > > Note that apache.org emails are only given to committers.
> > >
> > > John
> > >
> > > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > >> Thank you Tom. I was reading about the Apache email account and
> > >> wasn't sure if I should contact the infrastructure team. I'll send the
> > >> email.
> > >>
> > >> Miguel
> > >>
> > >> --
> > >> Miguel Jimenez, PhD student
> > >> Department of Computer Science
> > >> University of Victoria
> > >> Engineering/Computer Science Building (ECS), Room 412
> > >> Victoria, BC
> > >> V8W 3p6 Canada
> > >>
> > >> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  >
> > >> wrote:
> > >>
> > >>>
> > >>>Miguel asked about getting access to ASF Slack at the
> > >>> grooming call this morning, so I thought I’d send this to the entire
> > >>> list.
> > >>>
> > >>>In order to gain access, please send email to
> > >>> gene...@incubator.apache.org
> > >>> asking for write permissions on your Apache ID for the wiki/jira
> > >>> as well as access to the Slack channel.
> > >>>
> > >>>—Tom
> > >>>
> > >>>
> > >>>
> > >>>
> > >>
> >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Vishwanath Jayaraman
John,

 My username is vishwanathj and associated email address is 
vishwana...@hotmail.com.

I need edit access to confuence/wiki and permissions in JIRA to be able to 
change issue states from Open->Progress->resolved, etc.

Thanks in advance for all your help.

Vish



From: John D. Ament 
Sent: Monday, November 27, 2017 12:13 PM
To: dev@ariatosca.incubator.apache.org
Subject: Re: ASF Slack Access and Write Permissions to the Wiki

Miguel,

To get you set up on JIRA and Confluence, we'll need to know your username.

John

On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
wrote:

>
> Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> looking for wiki and Slack access
> only.  Vish ran into the same issue earlier with wiki access, but in his
> case permissions
> vanished after he did have write access to the wiki.
>
> —Tom
>
>
> > On Nov 27, 2017, at 12:21 PM, John D. Ament 
> wrote:
> >
> > Hi,
> >
> > I saw your email to general@incubator.  I'm not sure what your goal
> is.  Do
> > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > wiki/JIRA?
> >
> > Note that apache.org emails are only given to committers.
> >
> > John
> >
> > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> >> Thank you Tom. I was reading about the Apache email account and
> >> wasn't sure if I should contact the infrastructure team. I'll send the
> >> email.
> >>
> >> Miguel
> >>
> >> --
> >> Miguel Jimenez, PhD student
> >> Department of Computer Science
> >> University of Victoria
> >> Engineering/Computer Science Building (ECS), Room 412
> >> Victoria, BC
> >> V8W 3p6 Canada
> >>
> >> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> >> wrote:
> >>
> >>>
> >>>Miguel asked about getting access to ASF Slack at the
> >>> grooming call this morning, so I thought I’d send this to the entire
> >>> list.
> >>>
> >>>In order to gain access, please send email to
> >>> gene...@incubator.apache.org
> >>> asking for write permissions on your Apache ID for the wiki/jira
> >>> as well as access to the Slack channel.
> >>>
> >>>—Tom
> >>>
> >>>
> >>>
> >>>
> >>
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Miguel Angel Jimenez Achinte
Hi John,
The username is the same I sent to general@incubator:

username: jachinte
email: mig...@uvic.ca

for both Wiki and JIRA.

Miguel

--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 10:13 AM, John D. Ament 
wrote:

> Miguel,
>
> To get you set up on JIRA and Confluence, we'll need to know your username.
>
> John
>
> On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
> wrote:
>
> >
> > Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> > looking for wiki and Slack access
> > only.  Vish ran into the same issue earlier with wiki access, but in his
> > case permissions
> > vanished after he did have write access to the wiki.
> >
> > —Tom
> >
> >
> > > On Nov 27, 2017, at 12:21 PM, John D. Ament 
> > wrote:
> > >
> > > Hi,
> > >
> > > I saw your email to general@incubator.  I'm not sure what your goal
> > is.  Do
> > > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > > wiki/JIRA?
> > >
> > > Note that apache.org emails are only given to committers.
> > >
> > > John
> > >
> > > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > > mig...@rigiresearch.com> wrote:
> > >
> > >> Thank you Tom. I was reading about the Apache email account and
> > >> wasn't sure if I should contact the infrastructure team. I'll send the
> > >> email.
> > >>
> > >> Miguel
> > >>
> > >> --
> > >> Miguel Jimenez, PhD student
> > >> Department of Computer Science
> > >> University of Victoria
> > >> Engineering/Computer Science Building (ECS), Room 412
> > >> Victoria, BC
> > >> V8W 3p6 Canada
> > >>
> > >> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau  >
> > >> wrote:
> > >>
> > >>>
> > >>>Miguel asked about getting access to ASF Slack at the
> > >>> grooming call this morning, so I thought I’d send this to the entire
> > >>> list.
> > >>>
> > >>>In order to gain access, please send email to
> > >>> gene...@incubator.apache.org
> > >>> asking for write permissions on your Apache ID for the wiki/jira
> > >>> as well as access to the Slack channel.
> > >>>
> > >>>—Tom
> > >>>
> > >>>
> > >>>
> > >>>
> > >>
> >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
Miguel,

To get you set up on JIRA and Confluence, we'll need to know your username.

John

On Mon, Nov 27, 2017 at 12:23 PM Thomas Nadeau 
wrote:

>
> Sorry by “apache ID” I meant “jira login” below.  I think Miguel
> looking for wiki and Slack access
> only.  Vish ran into the same issue earlier with wiki access, but in his
> case permissions
> vanished after he did have write access to the wiki.
>
> —Tom
>
>
> > On Nov 27, 2017, at 12:21 PM, John D. Ament 
> wrote:
> >
> > Hi,
> >
> > I saw your email to general@incubator.  I'm not sure what your goal
> is.  Do
> > you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> > wiki/JIRA?
> >
> > Note that apache.org emails are only given to committers.
> >
> > John
> >
> > On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> > mig...@rigiresearch.com> wrote:
> >
> >> Thank you Tom. I was reading about the Apache email account and
> >> wasn't sure if I should contact the infrastructure team. I'll send the
> >> email.
> >>
> >> Miguel
> >>
> >> --
> >> Miguel Jimenez, PhD student
> >> Department of Computer Science
> >> University of Victoria
> >> Engineering/Computer Science Building (ECS), Room 412
> >> Victoria, BC
> >> V8W 3p6 Canada
> >>
> >> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> >> wrote:
> >>
> >>>
> >>>Miguel asked about getting access to ASF Slack at the
> >>> grooming call this morning, so I thought I’d send this to the entire
> >>> list.
> >>>
> >>>In order to gain access, please send email to
> >>> gene...@incubator.apache.org
> >>> asking for write permissions on your Apache ID for the wiki/jira
> >>> as well as access to the Slack channel.
> >>>
> >>>—Tom
> >>>
> >>>
> >>>
> >>>
> >>
>
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau

Sorry by “apache ID” I meant “jira login” below.  I think Miguel 
looking for wiki and Slack access
only.  Vish ran into the same issue earlier with wiki access, but in his case 
permissions 
vanished after he did have write access to the wiki.

—Tom


> On Nov 27, 2017, at 12:21 PM, John D. Ament  wrote:
> 
> Hi,
> 
> I saw your email to general@incubator.  I'm not sure what your goal is.  Do
> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> wiki/JIRA?
> 
> Note that apache.org emails are only given to committers.
> 
> John
> 
> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
> 
>> Thank you Tom. I was reading about the Apache email account and
>> wasn't sure if I should contact the infrastructure team. I'll send the
>> email.
>> 
>> Miguel
>> 
>> --
>> Miguel Jimenez, PhD student
>> Department of Computer Science
>> University of Victoria
>> Engineering/Computer Science Building (ECS), Room 412
>> Victoria, BC
>> V8W 3p6 Canada
>> 
>> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
>> wrote:
>> 
>>> 
>>>Miguel asked about getting access to ASF Slack at the
>>> grooming call this morning, so I thought I’d send this to the entire
>>> list.
>>> 
>>>In order to gain access, please send email to
>>> gene...@incubator.apache.org
>>> asking for write permissions on your Apache ID for the wiki/jira
>>> as well as access to the Slack channel.
>>> 
>>>—Tom
>>> 
>>> 
>>> 
>>> 
>> 



Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Miguel Angel Jimenez Achinte
Hi John,
I want to get access to AriaTosca wiki/JIRA.


--
Miguel Jimenez, PhD student
Department of Computer Science
University of Victoria
Engineering/Computer Science Building (ECS), Room 412
Victoria, BC
V8W 3p6 Canada

On Mon, Nov 27, 2017 at 9:21 AM, John D. Ament 
wrote:

> Hi,
>
> I saw your email to general@incubator.  I'm not sure what your goal is.
> Do
> you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
> wiki/JIRA?
>
> Note that apache.org emails are only given to committers.
>
> John
>
> On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
> mig...@rigiresearch.com> wrote:
>
> > Thank you Tom. I was reading about the Apache email account and
> > wasn't sure if I should contact the infrastructure team. I'll send the
> > email.
> >
> > Miguel
> >
> > --
> > Miguel Jimenez, PhD student
> > Department of Computer Science
> > University of Victoria
> > Engineering/Computer Science Building (ECS), Room 412
> > Victoria, BC
> > V8W 3p6 Canada
> >
> > On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> > wrote:
> >
> > >
> > > Miguel asked about getting access to ASF Slack at the
> > > grooming call this morning, so I thought I’d send this to the entire
> > > list.
> > >
> > > In order to gain access, please send email to
> > > gene...@incubator.apache.org
> > > asking for write permissions on your Apache ID for the wiki/jira
> > > as well as access to the Slack channel.
> > >
> > > —Tom
> > >
> > >
> > >
> > >
> >
>


Re: ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread John D. Ament
Hi,

I saw your email to general@incubator.  I'm not sure what your goal is.  Do
you want access to the AriaTosca wiki/JIRA?  Or the incubator wide
wiki/JIRA?

Note that apache.org emails are only given to committers.

John

On Mon, Nov 27, 2017 at 12:07 PM Miguel Angel Jimenez Achinte <
mig...@rigiresearch.com> wrote:

> Thank you Tom. I was reading about the Apache email account and
> wasn't sure if I should contact the infrastructure team. I'll send the
> email.
>
> Miguel
>
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
>
> On Mon, Nov 27, 2017 at 9:04 AM, Thomas Nadeau 
> wrote:
>
> >
> > Miguel asked about getting access to ASF Slack at the
> > grooming call this morning, so I thought I’d send this to the entire
> > list.
> >
> > In order to gain access, please send email to
> > gene...@incubator.apache.org
> > asking for write permissions on your Apache ID for the wiki/jira
> > as well as access to the Slack channel.
> >
> > —Tom
> >
> >
> >
> >
>


Grooming Meeting Minutes: November 27, 2017

2017-11-27 Thread Thomas Nadeau
November 27, 2017

Tal, Tom, Guy Offer, Vish, Arthur, Miguel

Aria-394 - closed
Aria-1 - Maxim/Avia proposed changes. Reponded to comments and pushed fixes. 
Avia reviewed. Should be finished today with one final review by tomorrow. Able 
to start release process after this.
Aria-408 - closed

.2 release process planned for Wednesday morning First Thing (if not earlier).

Aria-344 - Tal to start later today.

Aria-409 - Suneel to update.  Tom will ping him on the list for status.

Aria-354 - Arthur resolved.

Aria-409 - Suneel needs to provide an update.

TOM: Close sprint 2, start sprint 3

aria-399 - done


Committers Voted to Promote Tom as a Committer.

Discussion of what becomming a commiter is and how it differs from the PPMC.

Discussion what being removed as a committer


Should we merge the committers/process for managing the website to the same as 
the main code repo?
Take it to the list!


Welcome to the team Miguel!

ASF Slack Access and Write Permissions to the Wiki

2017-11-27 Thread Thomas Nadeau

Miguel asked about getting access to ASF Slack at the
grooming call this morning, so I thought I’d send this to the entire
list.

In order to gain access, please send email to 
gene...@incubator.apache.org 
asking for write permissions on your Apache ID for the wiki/jira
as well as access to the Slack channel.

—Tom





Re: upcoming podcasts

2017-11-27 Thread Thomas Nadeau
Suneel: 

This indeed is the case that Vish cannot edit. Can we adjust the Jira 
permissions so that anyone that is logged in can edit the Wiki? It appears that 
people not set with explicit write permissions can mod/edit the wiki.  Is there 
any reason why people that don’t have apache accounts shouldn’t be able to edit 
the wiki?  This is different from committer rights/etc… its just about project 
participation. 

—Tom


> On Nov 27, 2017, at 10:17 AM, Vishwanath Jayaraman  
> wrote:
> 
> Sure, I can add to the wiki.
> 
> Need edit permissions for username:vishwanathj with email 
> address:vishwana...@hotmail.com
> 
> Thanks
> 
> Vish
> 
> 
> 
> From: Thomas Nadeau 
> Sent: Monday, November 27, 2017 9:09 AM
> To: dev@ariatosca.incubator.apache.org
> Subject: Re: upcoming podcasts
> 
> 
>These are cool ideas. Can you add them to the wiki?
> 
> 
>> On Nov 27, 2017, at 10:07 AM, Vishwanath Jayaraman  
>> wrote:
>> 
>> I was going through (and still going through) the 
>> http://docs.oasis-open.org/tosca/TOSCA/v1.0/TOSCA-v1.0.pdf and 
>> http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.1/TOSCA-Simple-Profile-YAML-v1.1.html
>>  links and wished that there were multi part short videos that explained it. 
>> From a newbie perspective, understanding the content in the 2 links referred 
>>  is critical before delving into code and being able to contribute 
>> effectively in coding areas.
> Topology and Orchestration Specification for Cloud 
> ...
> docs.oasis-open.org
> TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
> Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
> 2013.
> 
> 
> TOSCA Simple Profile in YAML Version 
> 1.1
> docs.oasis-open.org
> This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
> TOSCA service templates.
> 
> 
> 
>> 
>> Thoughts?
>> 
>> TOSCA Simple Profile in YAML Version 
>> 1.1
> TOSCA Simple Profile in YAML Version 
> 1.1
> docs.oasis-open.org
> This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
> TOSCA service templates.
> 
> 
> 
>> docs.oasis-open.org
>> This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
>> TOSCA service templates.
>> 
>> 
>> Topology and Orchestration Specification for Cloud 
>> ...
> Topology and Orchestration Specification for Cloud 
> ...
> docs.oasis-open.org
> TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
> Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
> 2013.
> 
> 
> 
>> docs.oasis-open.org
>> TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © 
>> OASIS Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © 
>> OASIS Open 2013.
>> 
>> 
>> 
>> 
>> Vish
>> 
>> 
>> 
>> From: Thomas Nadeau 
>> Sent: Monday, November 27, 2017 8:34 AM
>> To: dev@ariatosca.incubator.apache.org
>> Subject: upcoming podcasts
>> 
>> 
>>   Good morning,
>> 
>>   Just a heads up that I will be taking the baton on putting together 
>> the podling report. Im going to get this done by the end of this week also, 
>> Tal and I will be doing the next podcast next week from Tel Aviv and might 
>> do a couple of extras while we are there with some of the local folks. if 
>> you have ideas/suggestions for stuff you want to hear about, please let me 
>> know and/or update the jira/wiki page here:
>> 
>> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
>>  
>> 
>> 
>>   —Tom
>> 
> 



Today's Grooming

2017-11-27 Thread Thomas Nadeau

We will be having our usual weekly grooming meeting at 11AM EST today. 
The Zoom coordinates can be found here:

 https://cloudify.zoom.us/j/5055197842 
 > >>

See you all in a few.

—Tom



Re: upcoming podcasts

2017-11-27 Thread Vishwanath Jayaraman
Sure, I can add to the wiki.

Need edit permissions for username:vishwanathj with email 
address:vishwana...@hotmail.com

Thanks

Vish



From: Thomas Nadeau 
Sent: Monday, November 27, 2017 9:09 AM
To: dev@ariatosca.incubator.apache.org
Subject: Re: upcoming podcasts


These are cool ideas. Can you add them to the wiki?


> On Nov 27, 2017, at 10:07 AM, Vishwanath Jayaraman  
> wrote:
>
> I was going through (and still going through) the 
> http://docs.oasis-open.org/tosca/TOSCA/v1.0/TOSCA-v1.0.pdf and 
> http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.1/TOSCA-Simple-Profile-YAML-v1.1.html
>  links and wished that there were multi part short videos that explained it. 
> From a newbie perspective, understanding the content in the 2 links referred  
> is critical before delving into code and being able to contribute effectively 
> in coding areas.
Topology and Orchestration Specification for Cloud 
...
docs.oasis-open.org
TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
2013.


TOSCA Simple Profile in YAML Version 
1.1
docs.oasis-open.org
This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
TOSCA service templates.



>
> Thoughts?
>
> TOSCA Simple Profile in YAML Version 
> 1.1
TOSCA Simple Profile in YAML Version 
1.1
docs.oasis-open.org
This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
TOSCA service templates.



> docs.oasis-open.org
> This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
> TOSCA service templates.
>
>
> Topology and Orchestration Specification for Cloud 
> ...
Topology and Orchestration Specification for Cloud 
...
docs.oasis-open.org
TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
2013.



> docs.oasis-open.org
> TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
> Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
> 2013.
>
>
>
>
> Vish
>
>
> 
> From: Thomas Nadeau 
> Sent: Monday, November 27, 2017 8:34 AM
> To: dev@ariatosca.incubator.apache.org
> Subject: upcoming podcasts
>
>
>Good morning,
>
>Just a heads up that I will be taking the baton on putting together 
> the podling report. Im going to get this done by the end of this week also, 
> Tal and I will be doing the next podcast next week from Tel Aviv and might do 
> a couple of extras while we are there with some of the local folks. if you 
> have ideas/suggestions for stuff you want to hear about, please let me know 
> and/or update the jira/wiki page here:
>
> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
>  
> 
>
>—Tom
>



Re: upcoming podcasts

2017-11-27 Thread Thomas Nadeau

These are cool ideas. Can you add them to the wiki?


> On Nov 27, 2017, at 10:07 AM, Vishwanath Jayaraman  
> wrote:
> 
> I was going through (and still going through) the 
> http://docs.oasis-open.org/tosca/TOSCA/v1.0/TOSCA-v1.0.pdf and 
> http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.1/TOSCA-Simple-Profile-YAML-v1.1.html
>  links and wished that there were multi part short videos that explained it. 
> From a newbie perspective, understanding the content in the 2 links referred  
> is critical before delving into code and being able to contribute effectively 
> in coding areas.
> 
> Thoughts?
> 
> TOSCA Simple Profile in YAML Version 
> 1.1
> docs.oasis-open.org
> This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
> TOSCA service templates.
> 
> 
> Topology and Orchestration Specification for Cloud 
> ...
> docs.oasis-open.org
> TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
> Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
> 2013.
> 
> 
> 
> 
> Vish
> 
> 
> 
> From: Thomas Nadeau 
> Sent: Monday, November 27, 2017 8:34 AM
> To: dev@ariatosca.incubator.apache.org
> Subject: upcoming podcasts
> 
> 
>Good morning,
> 
>Just a heads up that I will be taking the baton on putting together 
> the podling report. Im going to get this done by the end of this week also, 
> Tal and I will be doing the next podcast next week from Tel Aviv and might do 
> a couple of extras while we are there with some of the local folks. if you 
> have ideas/suggestions for stuff you want to hear about, please let me know 
> and/or update the jira/wiki page here:
> 
> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
>  
> 
> 
>—Tom
> 



Re: upcoming podcasts

2017-11-27 Thread Vishwanath Jayaraman
I was going through (and still going through) the 
http://docs.oasis-open.org/tosca/TOSCA/v1.0/TOSCA-v1.0.pdf and 
http://docs.oasis-open.org/tosca/TOSCA-Simple-Profile-YAML/v1.1/TOSCA-Simple-Profile-YAML-v1.1.html
 links and wished that there were multi part short videos that explained it. 
From a newbie perspective, understanding the content in the 2 links referred  
is critical before delving into code and being able to contribute effectively 
in coding areas.

Thoughts?

TOSCA Simple Profile in YAML Version 
1.1
docs.oasis-open.org
This document defines a profile of TOSCA v1.1 in YAML to simplify authoring 
TOSCA service templates.


Topology and Orchestration Specification for Cloud 
...
docs.oasis-open.org
TOSCA-v1.0-os 25 November 2013 Standards Track Work Product Copyright © OASIS 
Open 2013. All Rights Reserved. Page 3 of 114 Notices Copyright © OASIS Open 
2013.




Vish



From: Thomas Nadeau 
Sent: Monday, November 27, 2017 8:34 AM
To: dev@ariatosca.incubator.apache.org
Subject: upcoming podcasts


Good morning,

Just a heads up that I will be taking the baton on putting together the 
podling report. Im going to get this done by the end of this week also, Tal and 
I will be doing the next podcast next week from Tel Aviv and might do a couple 
of extras while we are there with some of the local folks. if you have 
ideas/suggestions for stuff you want to hear about, please let me know and/or 
update the jira/wiki page here:

https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos 


—Tom



Re: upcoming podcasts

2017-11-27 Thread Thomas Nadeau

That is a great idea. I think having a guest on the show that is more 
involved in the ONAP work would be awesome. Tal?

—Tom


> On Nov 27, 2017, at 9:51 AM, Nati Shalom  wrote:
> 
> How about covering how Aria is being used in ONAP?
> 
> On Mon, Nov 27, 2017 at 4:34 PM Thomas Nadeau  wrote:
> 
>> 
>>Good morning,
>> 
>>Just a heads up that I will be taking the baton on putting
>> together the podling report. Im going to get this done by the end of this
>> week also, Tal and I will be doing the next podcast next week from Tel Aviv
>> and might do a couple of extras while we are there with some of the local
>> folks. if you have ideas/suggestions for stuff you want to hear about,
>> please let me know and/or update the jira/wiki page here:
>> 
>> 
>> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
>> <
>> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
>>> 
>> 
>>—Tom
>> 
>> 



Re: upcoming podcasts

2017-11-27 Thread Nati Shalom
How about covering how Aria is being used in ONAP?

On Mon, Nov 27, 2017 at 4:34 PM Thomas Nadeau  wrote:

>
> Good morning,
>
> Just a heads up that I will be taking the baton on putting
> together the podling report. Im going to get this done by the end of this
> week also, Tal and I will be doing the next podcast next week from Tel Aviv
> and might do a couple of extras while we are there with some of the local
> folks. if you have ideas/suggestions for stuff you want to hear about,
> please let me know and/or update the jira/wiki page here:
>
>
> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
> <
> https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos
> >
>
> —Tom
>
>


upcoming podcasts

2017-11-27 Thread Thomas Nadeau

Good morning,

Just a heads up that I will be taking the baton on putting together the 
podling report. Im going to get this done by the end of this week also, Tal and 
I will be doing the next podcast next week from Tel Aviv and might do a couple 
of extras while we are there with some of the local folks. if you have 
ideas/suggestions for stuff you want to hear about, please let me know and/or 
update the jira/wiki page here:

https://cwiki.apache.org/confluence/display/ARIATOSCA/Periodic+Blogs+and+Videos 


—Tom



Re: First Podcast

2017-11-27 Thread Thomas Nadeau

Good idea to include the ep and title. Will look into the playlist.

—Tom


> On Nov 23, 2017, at 7:59 AM, Avia Efrat  wrote:
> 
> Maybe something like
> ARIA and TOSCA Podcast - ep01 - Introduction
> 
> In addition, create a Youtube playlist for the podcasts.
> 
> On Thu, Nov 23, 2017 at 2:54 PM, Thomas Nadeau 
> wrote:
> 
>> 
>>Fine with me. Thoughts, ideas and suggestions are welcome! *)
>> 
>>—Tom
>> 
>> 
>>> On Nov 23, 2017, at 3:33 AM, Avia Efrat  wrote:
>>> 
>>> And maybe make the video name a little bit more descriptive and
>> appealing =)
>>> 
>>> On Nov 21, 2017 13:46, "Thomas Nadeau"  wrote:
>>> 
 Thanks for the correction!
 
> On Nov 20, 2017, at 4:52 PM, Miguel Angel Jimenez Achinte <
 mig...@rigiresearch.com> wrote:
> 
> Hi Tom,
> The correct link is: https://www.youtube.com/watch?v=nZH-Fuo-b7M
> 
> Miguel
> 
> --
> Miguel Jimenez, PhD student
> Department of Computer Science
> University of Victoria
> Engineering/Computer Science Building (ECS), Room 412
> Victoria, BC
> V8W 3p6 Canada
> 
> On Mon, Nov 20, 2017 at 1:50 PM, Thomas Nadeau 
> wrote:
> 
>> 
>>  Hi folks:
>> 
>>  Tal and I took a swipe at the project’s first podcast.  This
>> is the link to the podcast:
>> 
>> https://www.youtube.com/edit?video_id=nZH-Fuo-b7M <
>> https://www.youtube.com/edit?video_id=nZH-Fuo-b7M>
>> 
>>  We plan to do these on some cadence that works with
>> intertwining this with the dev work that is underway. If you have
>> ideas and/or would like to participate, by all means please
>> get in touch with me as we’d love to have you!
>> 
>>  —Tom
>> 
>> 
>> 
 
 
>> 
>>